Skip to content

Commit ab498d9

Browse files
committed
qa, doc: Fix comment
This change is a follow-up for: - bitcoin/bitcoin#9956 - bitcoin/bitcoin#10096
1 parent 4c57e53 commit ab498d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/test_runner.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -783,8 +783,8 @@ def check_script_prefixes():
783783
def check_script_list(*, src_dir, fail_on_warn):
784784
"""Check scripts directory.
785785
786-
Check that there are no scripts in the functional tests directory which are
787-
not being run by pull-tester.py."""
786+
Check that all python files in this directory are categorized
787+
as a test script or meta script."""
788788
script_dir = src_dir + '/test/functional/'
789789
python_files = set([test_file for test_file in os.listdir(script_dir) if test_file.endswith(".py")])
790790
missed_tests = list(python_files - set(map(lambda x: x.split()[0], ALL_SCRIPTS + NON_SCRIPTS)))

0 commit comments

Comments
 (0)