summaryrefslogtreecommitdiffstats
path: root/vespa-testrunner-components/src
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2020-01-08 08:20:13 +0100
committerGitHub <noreply@github.com>2020-01-08 08:20:13 +0100
commit5489a01db126d4ae6c25bc4a84ff5f2cfd4e5123 (patch)
treedc8ec40545c495f99cb2488fbd06642769d67cf7 /vespa-testrunner-components/src
parentac86bb091d01e6299d6f3e88c531d1cd6903474d (diff)
Revert "Bjorncs/apache commons libraries cleanup"
Diffstat (limited to 'vespa-testrunner-components/src')
-rw-r--r--vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java b/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java
index c7799bff116..ca3da385dfe 100644
--- a/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java
+++ b/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java
@@ -1,6 +1,7 @@
// Copyright 2020 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.testrunner;
+import org.apache.commons.io.IOUtils;
import org.junit.Test;
import java.io.IOException;
@@ -27,7 +28,7 @@ public class PomXmlGeneratorTest {
}
private void assertFile(String resourceFile, String actual) throws IOException {
- String expected = new String(this.getClass().getResourceAsStream(resourceFile).readAllBytes());
+ String expected = IOUtils.toString(this.getClass().getResourceAsStream(resourceFile));
assertEquals(resourceFile, expected, actual);
}