Skip to content

Commit

Permalink
[feature/MNT-24127-EndpointToCalculateFolderSize] Addressing review c…
Browse files Browse the repository at this point in the history
…omments
  • Loading branch information
mohit-singh4 committed Oct 19, 2024
1 parent 6d6fbbe commit 3922c07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void testPostAndGetFolderSizeDetails() throws Exception
assertNotNull("After executing GET/size-details, it will provide NodeSizeDetails with 200 status code",
getResponse.getJsonResponse());

nodeSizeDetails = RestApiUtil.parseRestApiEntry(postResponse.getJsonResponse(), NodeSizeDetails.class);
nodeSizeDetails = RestApiUtil.parseRestApiEntry(getResponse.getJsonResponse(), NodeSizeDetails.class);

assertNotNull("We are not getting correct response " + nodeSizeDetails, nodeSizeDetails.getStatus());
assertEquals("SizeDetails hasn't been calculated yet, current status -" + nodeSizeDetails.getStatus().name() + "]", status, nodeSizeDetails.getStatus().name());
Expand Down

0 comments on commit 3922c07

Please sign in to comment.