See gh-20020
This commit is contained in:
Johnny Lim
2020-02-04 00:20:06 +09:00
committed by Stephane Nicoll
parent 05e7cd6f2b
commit b67ece48e4
7 changed files with 18 additions and 19 deletions

View File

@@ -55,7 +55,7 @@ class JarCommandIT {
invocation.await();
assertThat(invocation.getStandardOutput()).isEqualTo("");
assertThat(invocation.getErrorOutput())
.contains("The name of the " + "resulting jar and at least one source file must be specified");
.contains("The name of the resulting jar and at least one source file must be specified");
}
@Test
@@ -64,7 +64,7 @@ class JarCommandIT {
invocation.await();
assertThat(invocation.getStandardOutput()).isEqualTo("");
assertThat(invocation.getErrorOutput())
.contains("The name of the " + "resulting jar and at least one source file must be specified");
.contains("The name of the resulting jar and at least one source file must be specified");
}
@Test