diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-16 15:41:15 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-16 15:41:15 -0400 |
commit | 73d5eab6fe1178edecc3eee7645a897db5b8c81f (patch) | |
tree | 9e86e4ebc1b004d7951b8ed70e609d9e23fff67d /tests/test_concurrency.py | |
parent | 5a609b662e97b1a3728467d2056ca63e3984af75 (diff) | |
download | python-coveragepy-git-73d5eab6fe1178edecc3eee7645a897db5b8c81f.tar.gz |
Change CoverageData.summary() to CoverageData.line_counts()
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index e0eacd18..e2ea3aa9 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -154,7 +154,7 @@ class ConcurrencyTest(CoverageTest): print_simple_annotation(code, linenos) lines = line_count(code) - self.assertEqual(data.summary()['try_it.py'], lines) + self.assertEqual(data.line_counts()['try_it.py'], lines) else: expected_out = ( "Can't support concurrency=%s with PyTracer, " |