Skip to content

Commit

Permalink
minor change in testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
tanya732 committed Oct 8, 2024
1 parent 5ce4f39 commit ac8ce28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ public void testClientGrantsWithOrg() throws Auth0Exception {
api.clientGrants().delete(clientGrant.getId()).execute();

// Retrieve the ClientGrant and ensure error is return since grant has been deleted.
ClientGrantsPage clientGrantsPage = api.clientGrants().list(new ClientGrantsFilter().withClientId(clientGrant.getId())).execute().getBody();
ClientGrantsPage clientGrantsPage = api.clientGrants().list(new ClientGrantsFilter().withClientId(client.getClientId())).execute().getBody();
assertThat(clientGrantsPage.getItems().size(), is(0));
}
catch (Exception ex){
Expand Down

0 comments on commit ac8ce28

Please sign in to comment.