Skip to content

Commit ab025e3

Browse files
authored
Fix a spelling mistake and tweak tense of output for test.bisect (GH-2683)
Changed "subbset" to "subset". Also made the sentences read like things were happening instead of stating what the code should do (in other words more descriptive than prescriptive).
1 parent 50c9435 commit ab025e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/test/bisect.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def write_tests(filename, tests):
3838
def write_output(filename, tests):
3939
if not filename:
4040
return
41-
print("Write %s tests into %s" % (len(tests), filename))
41+
print("Writing %s tests into %s" % (len(tests), filename))
4242
write_tests(filename, tests)
4343
return filename
4444

@@ -133,11 +133,11 @@ def main():
133133
print("ran %s tests/%s" % (ntest, len(tests)))
134134
print("exit", exitcode)
135135
if exitcode:
136-
print("Tests failed: use this new subtest")
136+
print("Tests failed: continuing with this subtest")
137137
tests = subtests
138138
output = write_output(args.output, tests)
139139
else:
140-
print("Tests succeeded: skip this subtest, try a new subbset")
140+
print("Tests succeeded: skipping this subtest, trying a new subset")
141141
print()
142142
iteration += 1
143143
except KeyboardInterrupt:

0 commit comments

Comments
 (0)