Skip to content

Commit ff845cc

Browse files
chore(deps): update nuget (#300)
* chore(deps): update nuget * Changed async void tests to tasks Added null checks in tests * Updated api spec --------- Co-authored-by: projectorigin-renovate[bot] <150237208+projectorigin-renovate[bot]@users.noreply.github.com> Co-authored-by: Martin Schmidt <[email protected]>
1 parent 71cca02 commit ff845cc

File tree

10 files changed

+204
-41
lines changed

10 files changed

+204
-41
lines changed

src/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": false,
44
"tools": {
55
"dotnet-grpc": {
6-
"version": "2.62.0",
6+
"version": "2.66.0",
77
"commands": [
88
"dotnet-grpc"
99
]

src/ProjectOrigin.WalletSystem.IntegrationTests/ApiTests/ApiTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,9 @@ public async Task can_query_claims()
303303
var settings = new VerifySettings();
304304
settings.ScrubMember("UpdatedAt");
305305
await Verifier.Verify(resultWithoutFiltersContent, settings);
306-
resultWithUpdatedSince.Result.Should().NotBeEmpty();
306+
307+
resultWithUpdatedSince.Should().NotBeNull();
308+
resultWithUpdatedSince!.Result.Should().NotBeEmpty();
307309
resultWithUpdatedSince.Result.Should().BeInAscendingOrder(x => x.UpdatedAt);
308310
resultWithoutFiltersJson.Should().Be(resultWithFilterStart);
309311
resultWithoutFiltersJson.Should().Be(resultWithFilterEnd);

0 commit comments

Comments
 (0)