summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStephan Richter <stephan.richter@gmail.com>2019-05-12 12:17:41 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-06-10 17:15:32 -0400
commitc399478e86892f0e7ade51873dfbe13f87ecfa83 (patch)
treefb57f3945c364c35be7ffcb1fedfa1314be58104 /tests
parente1574b260db45ec00074c1d9aafc3586cb3952a0 (diff)
downloadpython-coveragepy-git-c399478e86892f0e7ade51873dfbe13f87ecfa83.tar.gz
Support for full qnames for old-style classes.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_context.py b/tests/test_context.py
index 0aa31e4b..0baa51e9 100644
--- a/tests/test_context.py
+++ b/tests/test_context.py
@@ -284,4 +284,4 @@ class QualnameTest(CoverageTest):
if not env.PY2:
self.skipTest("Old-style classes are only in Python 2")
self.assertEqual(OldStyle().meth(), "tests.test_context.OldStyle.meth")
- self.assertEqual(OldChild().meth(), "tests.test_context.OldChild.meth")
+ self.assertEqual(OldChild().meth(), "tests.test_context.OldStyle.meth")