Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
weidongxu-microsoft committed Jul 24, 2023
1 parent 9c4c22f commit 7289d72
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 @@ -55,7 +55,7 @@ public void canCRUDApplication() throws Exception {
}

@Test
@DoNotRecord
@DoNotRecord(skipInPlayback = true)
public void canListApplications() {
if (skipInPlayback()) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void canCRUDRoleAssignment() throws Exception {
Assertions.assertEquals(1, roleAssignments.size());
RoleAssignment roleAssignment1 = roleAssignments.iterator().next();
Assertions.assertEquals(roleAssignment.id(), roleAssignment1.id());
Assertions.assertEquals(roleAssignment.scope(), roleAssignment1.scope());
// Assertions.assertEquals(roleAssignment.scope(), roleAssignment1.scope()); // subscriptionId redacted
Assertions.assertEquals(roleAssignment.roleDefinitionId(), roleAssignment1.roleDefinitionId());
Assertions.assertEquals(roleAssignment.principalId(), roleAssignment1.principalId());
Assertions.assertEquals("contributor role", roleAssignment1.description());
Expand Down

0 comments on commit 7289d72

Please sign in to comment.