Skip to content

Commit

Permalink
NoIssue: unittest bugfix because Java changed some mimetype detects
Browse files Browse the repository at this point in the history
  • Loading branch information
nbartels committed Jul 22, 2022
1 parent 12e11c4 commit 2770d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/restfb/BinaryAttachmentTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static Stream<Arguments> fileAndContentProvider() {
return Stream.of( //
Arguments.arguments("example.png", "image/png"), // png check
Arguments.arguments("example.html", "text/html"), // html check
Arguments.arguments("example.json", "application/octet-stream") // json check
Arguments.arguments("example.json", "application/json") // json check
);
}

Expand Down

0 comments on commit 2770d2c

Please sign in to comment.