Skip to content

Commit

Permalink
One more adjustment for Python 3.9a2
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 21, 2019
1 parent 28c29a7 commit cecc5dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_execfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_run_python_file(self):
self.assertEqual(mod_globs['__main__.DATA'], "xyzzy")

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

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

0 comments on commit cecc5dd

Please sign in to comment.