diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-08 23:55:33 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-08 23:55:33 -0500 |
commit | 9a4d9ecf738f7b2a755664a82e6169491c4d722d (patch) | |
tree | 20cb9e6fba2872f33f4dd44613dd350e0faf6c93 /test/test_process.py | |
parent | f8aaec370e6cfd104d026b326d0a33918dbe2bc2 (diff) | |
download | python-coveragepy-git-9a4d9ecf738f7b2a755664a82e6169491c4d722d.tar.gz |
Fix a typo in a test name
Diffstat (limited to 'test/test_process.py')
-rw-r--r-- | test/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_process.py b/test/test_process.py index e32996a4..ac08d1fe 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -402,7 +402,7 @@ class ProcessTest(CoverageTest): class AliasedCommandTests(CoverageTest): """Tests of the version-specific command aliases.""" - def test__major_version_works(self): + def test_major_version_works(self): # "coverage2" works on py2 cmd = "coverage%d" % sys.version_info[0] out = self.run_command(cmd) |