summaryrefslogtreecommitdiff
path: root/test/test_execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-04-17 06:36:08 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-04-17 06:36:08 -0400
commit1759879028e6d1c7d86a5a60d02b6236bd04c6ec (patch)
tree822eaffdada340e1685bdd018a24728ec2af00d5 /test/test_execfile.py
parente0b033e81122b963919f21ee1224c9454551ac17 (diff)
downloadpython-coveragepy-git-1759879028e6d1c7d86a5a60d02b6236bd04c6ec.tar.gz
Finally realized that unit test classes should be named like any other class: after the instance they create.
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 d75bde0a..b99e7480 100644
--- a/test/test_execfile.py
+++ b/test/test_execfile.py
@@ -11,7 +11,7 @@ class Tee(object):
for f in self.files:
f.write(data)
-class RunTests(unittest.TestCase):
+class RunTest(unittest.TestCase):
def setUp(self):
self.oldstdout = sys.stdout
self.stdout = cStringIO.StringIO()