Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjetilhau committed Oct 8, 2024
1 parent 7fafeeb commit 8a7c457
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ public async Task Delete_PortalApp_AsAnonymousUser_ShouldReturnUnauthorized()
foreach (var portal in portals)
{
AssertHelpers.AssertPortalValues(portal);
Assert.AreEqual(portal.Apps.Count, 0); // No relational data should be included in this request
Assert.AreEqual(0, portal.Apps.Count); // No relational data should be included in this request
}

return portals;
Expand All @@ -622,7 +622,7 @@ public async Task Delete_PortalApp_AsAnonymousUser_ShouldReturnUnauthorized()
Assert.IsNotNull(content);
AssertHelpers.AssertPortalValues(portal);
AssertHelpers.AssertPortalConfigurationValues(portal!.Configuration, acceptNullValues: true);
Assert.AreEqual(portal.Apps.Count, 0); // No relational data should be included in this request
Assert.AreEqual(0, portal.Apps.Count); // No relational data should be included in this request

return portal;
}
Expand Down

0 comments on commit 8a7c457

Please sign in to comment.