Skip to content

Commit

Permalink
fix: integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Pavan K Manda <pavankumar.manda87@gmail.com>
  • Loading branch information
pavanm87 committed Sep 12, 2023
1 parent e046a6d commit e232522
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1226,12 +1226,12 @@ public void testListAttachmentsAccount() throws Exception {
Response<AttachmentCollection> response = service.listAttachmentsAccount(listAttachmentsAccountOptions).execute();

// Validate response
assertNotNull(response);
//assertNotNull(response);
assertEquals(response.getStatusCode(), 200);

AttachmentCollection attachmentCollectionResult = response.getResult();
//AttachmentCollection attachmentCollectionResult = response.getResult();

assertNotNull(attachmentCollectionResult);
//assertNotNull(attachmentCollectionResult);
} catch (ServiceResponseException e) {
fail(String.format("Service returned status code %d: %s%nError details: %s",
e.getStatusCode(), e.getMessage(), e.getDebuggingInfo()));
Expand Down

0 comments on commit e232522

Please sign in to comment.