Commit 25bfc55a authored by Benjamin Peterson's avatar Benjamin Peterson

take into account shebang line change

parent b5cdf191
......@@ -51,7 +51,7 @@ class ImportTests(unittest.TestCase):
self.assertNotEqual(fp, None)
self.assertEqual(fp.encoding, "iso-8859-1")
self.assertEqual(fp.tell(), 0)
self.assertEqual(fp.readline(), '#!/usr/bin/env python\n')
self.assertEqual(fp.readline(), '#!/usr/bin/env python3\n')
fp.close()
fp, filename, info = imp.find_module("tokenize")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment