Skip to content

Commit ef841f8

Browse files
committed
chore: fix test validation messages
1 parent d8899ba commit ef841f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/BenchmarkDotNet.Tests/Validators/RuntimeValidatorTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ public void NullRuntimeMixed_Should_Failed()
4040

4141
// Assert
4242
{
43-
var expectedMessage = "Job(Dry) don't have a Runtime characteristic. It's recommended to specify runtime by using WithRuntime explicitly.";
43+
var expectedMessage = "Job(Dry) doesn't have a Runtime characteristic. It's recommended to specify runtime by using WithRuntime explicitly.";
4444
Assert.Contains(expectedMessage, errors);
4545
}
4646
{
47-
var expectedMessage = "Job(Toolchain=.NET 10.0) don't have a Runtime characteristic. It's recommended to specify runtime by using WithRuntime explicitly.";
47+
var expectedMessage = "Job(Toolchain=.NET 10.0) doesn't have a Runtime characteristic. It's recommended to specify runtime by using WithRuntime explicitly.";
4848
Assert.Contains(expectedMessage, errors);
4949
}
5050
}

0 commit comments

Comments
 (0)