Skip to content

Commit 8f7bd30

Browse files
authored
test.bisect: Update from master, fix typos (#7311)
1 parent 99ba73d commit 8f7bd30

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)