We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceefbd8 commit acf1c04Copy full SHA for acf1c04
src/bunit.web.query/TestIds/TestIdNotFoundException.cs
@@ -9,13 +9,13 @@ public sealed class TestIdNotFoundException : Exception
9
/// <summary>
10
/// Gets the test id used to search with.
11
/// </summary>
12
- public string? TestId { get; }
+ public string TestId { get; }
13
14
15
/// Initializes a new instance of the <see cref="TestIdNotFoundException"/> class.
16
17
/// <param name="testId">The test id that was searched for.</param>
18
- public TestIdNotFoundException(string? testId = null)
+ public TestIdNotFoundException(string testId)
19
: base($"Unable to find an element with the Test ID '{testId}'.")
20
{
21
TestId = testId;
0 commit comments