Skip to content

Commit

Permalink
Build: fix compilation of :libraries:tools:kotlin-maven-plugin-test
Browse files Browse the repository at this point in the history
  • Loading branch information
demiurg906 committed Nov 28, 2020
1 parent 4779092 commit d887814
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ public void run(MavenExecutionResult execResult) {
}
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);
}
});
Expand Down

0 comments on commit d887814

Please sign in to comment.