tests: Remove unused testing code

This commit is contained in:
practicalswift
2018-09-24 22:45:58 +02:00
parent e8d490f27e
commit 590a57fdec
6 changed files with 6 additions and 14 deletions

View File

@@ -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))