Skip to content

Commit

Permalink
- Fix Integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
rathnapandi committed Sep 17, 2023
1 parent 535fbbd commit af98e38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ public RestAPICall createUpsertUri(HttpEntity entity, URI uri, ClientApplication
}

public void saveQuota(ClientApplication app, ClientApplication actualApp) throws AppException {
if (app != null & actualApp != null && app.getAppQuota() != null && actualApp.getAppQuota() != null && app.getAppQuota().equals(actualApp.getAppQuota()))
if (app != null && actualApp != null && app.getAppQuota() != null && actualApp.getAppQuota() != null && app.getAppQuota().equals(actualApp.getAppQuota()))
return;
try {
if (app != null) {
Expand Down

0 comments on commit af98e38

Please sign in to comment.