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
commit65040fe1b7f9b1a121d1817cdd241a3782369076 (patch)
treeb3ee1491f46801afdcfd07526906c7a90741c552 /perf
parentcb5c0ffe6bef8b43bb1e22a3576e535dd0bf89fd (diff)
downloadpython-coveragepy-65040fe1b7f9b1a121d1817cdd241a3782369076.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 8c75392..a32f313 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()