Skip to content

Commit

Permalink
fix: fix test asserts
Browse files Browse the repository at this point in the history
Signed-off-by: MatheusVict <[email protected]>
  • Loading branch information
MatheusVict committed Mar 4, 2024
1 parent 4d4c9c9 commit d04b24f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void should_UploadFile_Successfully() {
ResponseEntity<String> responseEntity = filesStorageController.uploadFile(mockFile, fileType);

assertTrue(responseEntity.getStatusCode().is2xxSuccessful());
assertEquals(HttpStatus.OK, responseEntity.getStatusCode());
assertEquals(HttpStatus.CREATED, responseEntity.getStatusCode());
assertEquals(expected, responseEntity.getBody());
}

Expand Down

0 comments on commit d04b24f

Please sign in to comment.