We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e709964 commit 11492d2Copy full SHA for 11492d2
src/test/java/com/bandwidth/sdk/smoke/MediaApiTest.java
@@ -79,7 +79,7 @@ public void getMedia() throws ApiException, IOException {
79
ApiResponse<File> response = api.getMediaWithHttpInfo(BW_ACCOUNT_ID, mediaId);
80
81
assertThat(response.getStatusCode(), is(200));
82
- 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")));
83
}
84
85
@Test
0 commit comments