Build: fix compilation of :libraries:tools:kotlin-maven-plugin-test
This commit is contained in:
+2
-2
@@ -107,8 +107,8 @@ class MavenExecutionResult {
|
||||
}
|
||||
Arrays.sort(expectedPaths);
|
||||
|
||||
String expected = StringUtil.join(expectedPaths, "\n");
|
||||
String actual = StringUtil.join(actualPaths, "\n");
|
||||
String expected = StringUtil.join(Arrays.asList(expectedPaths), "\n");
|
||||
String actual = StringUtil.join(Arrays.asList(actualPaths), "\n");
|
||||
Assert.assertEquals("Compiled files differ", expected, actual);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user