Skip to content

Commit

Permalink
SWI-6690 Media Tests (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoegel authored Dec 9, 2024
1 parent e709964 commit 11492d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/bandwidth/sdk/smoke/MediaApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void getMedia() throws ApiException, IOException {
ApiResponse<File> response = api.getMediaWithHttpInfo(BW_ACCOUNT_ID, mediaId);

assertThat(response.getStatusCode(), is(200));
assertThat(FileUtils.readLines(response.getData(), "utf-8"), is(FileUtils.readLines(media, "utf-8")));
assertThat(FileUtils.readLines(response.getData(), "ISO-8859-1"), is(FileUtils.readLines(media, "ISO-8859-1")));
}

@Test
Expand Down

0 comments on commit 11492d2

Please sign in to comment.