summaryrefslogtreecommitdiff
path: root/test/test_execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-07-08 09:24:20 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-07-08 09:24:20 -0400
commitcf8104fc6f89f930c9ed73aa5fcb26d719c34c8c (patch)
tree09a17673d425ae0333e78e64f28ca927a5fcb958 /test/test_execfile.py
parent7543acc020bcf956c95396b234b26f0b26783243 (diff)
downloadpython-coveragepy-cf8104fc6f89f930c9ed73aa5fcb26d719c34c8c.tar.gz
Various Py3k fixes: remove gratuitous print, don't test the print statement, deal with __cmp__ ugliness, etc.
Diffstat (limited to 'test/test_execfile.py')
-rw-r--r--test/test_execfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_execfile.py b/test/test_execfile.py
index 6cc7cab..9c838e1 100644
--- a/test/test_execfile.py
+++ b/test/test_execfile.py
@@ -40,7 +40,7 @@ class RunTest(CoverageTest):
def test_no_extra_file(self):
# Make sure that running a file doesn't create an extra compiled file.
self.makeFile("xxx", """\
- print "a non-.py file!"
+ desc = "a non-.py file!"
""")
self.assertEqual(os.listdir("."), ["xxx"])