We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce:
Output:
FAIL: benchmark_test.go:62: BenchmarkS.TestBenchmarkBytes benchmark_test.go:74: c.Assert(output.value, Matches, expected) ... value string = "PASS: check_test.go:151: FixtureHelper.Benchmark2\t 10\t 1597640 ns/op\t 0.64 MB/s\n" ... regex string = "PASS: check_test\\.go:[0-9]+: FixtureHelper\\.Benchmark2\t\\s+[0-9]+\t\\s+[0-9]+ ns/op\t\\s+ *[1-9]\\.[0-9]{2} MB/s\n"
The test fails because 0.64 MB/s doesn't match [1-9]\.\d+.
0.64 MB/s
[1-9]\.\d+
The text was updated successfully, but these errors were encountered:
This looks to be fixed by 10cb982 (which updates the CI to run the test suite on Windows), which makes the suggested change to the regexp.
Sorry, something went wrong.
No branches or pull requests
To reproduce:
Output:
The test fails because
0.64 MB/s
doesn't match[1-9]\.\d+
.The text was updated successfully, but these errors were encountered: