You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java-compiler-testing/src/test/java/io/github/ascopes/jct/tests/unit/compilers/impl/JavacJctFlagBuilderImplTest.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -270,7 +270,7 @@ class ReleaseFlagTest {
270
270
271
271
@DisplayName("Setting .release(String) adds the '--release <version>' flag")
272
272
@ValueSource(strings = {"8", "11", "17"})
273
-
@ParameterizedTest(name = "Setting .release(String) adds the '--release {0}' flag")
273
+
@ParameterizedTest(name = "Setting .release(String) adds the \"--release {0}\" flag")
274
274
voidaddsFlagIfPresent(Stringversion) {
275
275
// When
276
276
flagBuilder.release(version);
@@ -304,7 +304,7 @@ class SourceFlagTest {
304
304
305
305
@DisplayName("Setting .source(String) adds the '-source <version>' flag")
306
306
@ValueSource(strings = {"8", "11", "17"})
307
-
@ParameterizedTest(name = "Setting .source(String) adds the '-source {0}' flag")
307
+
@ParameterizedTest(name = "Setting .source(String) adds the \"-source {0}\" flag")
308
308
voidaddsFlagIfPresent(Stringversion) {
309
309
// When
310
310
flagBuilder.source(version);
@@ -339,7 +339,7 @@ class TargetFlagTest {
339
339
340
340
@DisplayName("Setting .target(String) adds the '-target <version>' flag")
341
341
@ValueSource(strings = {"8", "11", "17"})
342
-
@ParameterizedTest(name = "Setting .target(String) adds the '-target {0}' flag")
342
+
@ParameterizedTest(name = "Setting .target(String) adds the \"-target {0}\" flag")
0 commit comments