diff options
author | Danny Allen <danny.allen@pennantplc.co.uk> | 2014-09-22 12:10:53 +0100 |
---|---|---|
committer | Danny Allen <danny.allen@pennantplc.co.uk> | 2014-09-22 12:10:53 +0100 |
commit | ad4c7f3a5194f6966454d534f02e6b02633fa370 (patch) | |
tree | b6e1feacb8ff67fab0d311e36c09a52ef8be188f /tests/test_execfile.py | |
parent | 1de59bd539baa6b38e98f08b268deb3eeaeb5eb0 (diff) | |
parent | 1b6d0d06624170fb7a17738387387b1f21357e94 (diff) | |
download | python-coveragepy-git-ad4c7f3a5194f6966454d534f02e6b02633fa370.tar.gz |
* Merge changes from head.
Diffstat (limited to 'tests/test_execfile.py')
-rw-r--r-- | tests/test_execfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_execfile.py b/tests/test_execfile.py index 2427847e..69616e84 100644 --- a/tests/test_execfile.py +++ b/tests/test_execfile.py @@ -16,7 +16,7 @@ class RunFileTest(CoverageTest): def test_run_python_file(self): tryfile = os.path.join(here, "try_execfile.py") run_python_file(tryfile, [tryfile, "arg1", "arg2"]) - mod_globs = eval(self.stdout()) + mod_globs = eval(self.stdout()) # pylint: disable=eval-used # The file should think it is __main__ self.assertEqual(mod_globs['__name__'], "__main__") |