Skip to content

Commit cecc5dd

Browse files
committed
One more adjustment for Python 3.9a2
1 parent 28c29a7 commit cecc5dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_execfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_run_python_file(self):
4646
self.assertEqual(mod_globs['__main__.DATA'], "xyzzy")
4747

4848
# Argv should have the proper values.
49-
self.assertEqual(mod_globs['argv0'], python_reported_file(TRY_EXECFILE))
49+
self.assertEqual(mod_globs['argv0'], TRY_EXECFILE)
5050
self.assertEqual(mod_globs['argv1-n'], ["arg1", "arg2"])
5151

5252
# __builtins__ should have the right values, like open().

0 commit comments

Comments
 (0)