updated GHContentIntegrationTest.java

dummy commit
This commit is contained in:
Stefan Reisner
2020-05-12 12:06:44 +02:00
parent 63ce8e461b
commit 65d6fc7272

View File

@@ -166,7 +166,6 @@ public class GHContentIntegrationTest extends AbstractGitHubWireMockTest {
final GHRepository repo = gitHub.getRepository("hub4j-test-org/GHContentIntegrationTest");
final GHContent fileContent = repo.getFileContent("ghcontent-ro/a-file-with-\u00F6");
assertThat(IOUtils.readLines(fileContent.read(), StandardCharsets.UTF_8), hasItems("test"));
final GHContent fileContent2 = repo.getFileContent(fileContent.getPath());
assertThat(IOUtils.readLines(fileContent2.read(), StandardCharsets.UTF_8), hasItems("test"));
}