summaryrefslogtreecommitdiff
path: root/perf
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-11-12 17:53:23 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-11-12 17:53:23 -0500
commit5d53cad3c136fd66011db5fb95eac3d51845ceb6 (patch)
treea766c1a2a35c537ba3fb1d6dfab70d9eac956d72 /perf
parenta3cb2f42aae5392c1a957e6522b0339733ec66cc (diff)
downloadpython-coveragepy-git-5d53cad3c136fd66011db5fb95eac3d51845ceb6.tar.gz
A better name for a stat
Diffstat (limited to 'perf')
-rw-r--r--perf/stress_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/perf/stress_test.py b/perf/stress_test.py
index 8c75392f..a32f313a 100644
--- a/perf/stress_test.py
+++ b/perf/stress_test.py
@@ -83,10 +83,10 @@ class StressTest(CoverageTest):
)
if stats is not None:
- assert actual_file_count == stats['new_files']
+ assert actual_file_count == stats['files']
assert actual_call_count == stats['calls']
assert actual_line_count == stats['lines']
- print("File counts", file_count, actual_file_count, stats['new_files'])
+ print("File counts", file_count, actual_file_count, stats['files'])
print("Call counts", call_count, actual_call_count, stats['calls'])
print("Line counts", line_count, actual_line_count, stats['lines'])
print()