Skip to content

Commit 7120fca

Browse files
committed
Remove usages of ShouldNotBeNullOrEmpty
1 parent 5a34ed3 commit 7120fca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/OpenApiKiotaEndToEndTests/ClientIdGenerationModes/ClientIdGenerationModesTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public async Task Can_create_resource_without_ID_when_supplying_ID_is_forbidden(
254254
// Assert
255255
document.ShouldNotBeNull();
256256
document.Data.ShouldNotBeNull();
257-
document.Data.Id.ShouldNotBeNullOrEmpty();
257+
document.Data.Id.Should().NotBeNullOrEmpty();
258258

259259
long newPlayerGroupId = long.Parse(document.Data.Id);
260260

test/OpenApiNSwagEndToEndTests/ClientIdGenerationModes/ClientIdGenerationModesTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public async Task Can_create_resource_without_ID_when_supplying_ID_is_forbidden(
244244

245245
// Assert
246246
document.ShouldNotBeNull();
247-
document.Data.Id.ShouldNotBeNullOrEmpty();
247+
document.Data.Id.Should().NotBeNullOrEmpty();
248248

249249
long newPlayerGroupId = long.Parse(document.Data.Id);
250250

0 commit comments

Comments
 (0)