aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_runner.py
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-09-24 22:45:58 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-11-07 18:07:49 +0100
commit590a57fdecc2eb2e8208d82e491d09a1986e4f0e (patch)
treef9cd40c88c058942de7eac7321b0ccdd4447627c /test/functional/test_runner.py
parente8d490f27e691d8e5f6910f878c4f1c3c6ad788d (diff)
downloadbitcoin-590a57fdecc2eb2e8208d82e491d09a1986e4f0e.tar.xz
tests: Remove unused testing code
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-xtest/functional/test_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index b4fd828142..90b333f45a 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -635,7 +635,7 @@ class RPCCoverage():
with open(coverage_ref_filename, 'r', encoding="utf8") as coverage_ref_file:
all_cmds.update([line.strip() for line in coverage_ref_file.readlines()])
- for root, dirs, files in os.walk(self.dir):
+ for root, _, files in os.walk(self.dir):
for filename in files:
if filename.startswith(coverage_file_prefix):
coverage_filenames.add(os.path.join(root, filename))