From 2aa7c61664fac858d42670d37b84d2bd2644d244 2014-10-07 23:51:12 From: Manuel Riel Date: 2014-10-07 23:51:12 Subject: [PATCH] remove commented-out code --- diff --git a/IPython/html/tests/test_files.py b/IPython/html/tests/test_files.py index 82c630d..2dbf7f0 100644 --- a/IPython/html/tests/test_files.py +++ b/IPython/html/tests/test_files.py @@ -91,7 +91,6 @@ class FilesTest(NotebookTestBase): r = requests.get(url_path_join(base, 'files', 'test.bin')) self.assertEqual(r.status_code, 200) self.assertEqual(r.headers['content-type'], 'application/octet-stream') - # self.assertTrue(r.content[0] == 255 or r.content[0] == b'\xff') self.assertEqual(r.content[:1], b'\xff') self.assertEqual(len(r.content), 6)