| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b3629da commit 255023f
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -227,7 +227,7 @@ def RunSingle(self, parallel, thread_id): | |||
| 227 | 227 | if self.measure_flakiness: | |
| 228 | 228 | outputs = [case.Run() for _ in range(self.measure_flakiness)] | |
| 229 | 229 | # +1s are there because the test already failed once at this point. | |
| 230 | - print(f" failed {len([i for i in outputs if i.UnexpectedOutput()]) + 1} out of {self.measure_flakiness + 1}") | ||
| 230 | + print(" failed %d out of %d" % (len([i for i in outputs if i.UnexpectedOutput()]) + 1, self.measure_flakiness + 1)) | ||
| 231 | 231 | else: | |
| 232 | 232 | self.succeeded += 1 | |
| 233 | 233 | self.remaining -= 1 | |
| Back | FazBrowse Home | New Git URL |
0 commit comments