Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
georgii-borovinskikh-sonarsource committed Jan 19, 2024
1 parent a65cca7 commit 4ddb584
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task InvokeAsync_ComponentKeyNotSpecified_ComponentsAreNotIncludedI
_ = await testSubject.InvokeAsync(httpClient, CancellationToken.None);

var actualQueryString = GetSingleActualQueryString(handlerMock);
actualQueryString.Should().Contain("component");
actualQueryString.Should().NotContain("component");
}

[TestMethod]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task InvokeAsync_ComponentKeyNotSpecified_ComponentsAreNotIncludedI
_ = await testSubject.InvokeAsync(httpClient, CancellationToken.None);

var actualQueryString = GetSingleActualQueryString(handlerMock);
actualQueryString.Should().Contain("component");
actualQueryString.Should().NotContain("component");
}

[TestMethod]
Expand Down

0 comments on commit 4ddb584

Please sign in to comment.