Skip to content

Commit 6d23890

Browse files
authored
Use , instead of -> in docs examples
1 parent 29dd504 commit 6d23890

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/code-howtos/testing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ Example for a nicely formatted `@CsvSource`
3636

3737
```java
3838
@ParameterizedTest
39-
@CsvSource(delimiterString = "->", textBlock = """
39+
@CsvSource(textBlock = """
4040
# underscore removed
41-
junit_jupiter -> JunitJupiter
41+
junit_jupiter, JunitJupiter
4242
# camel case kept
43-
fooBar -> FooBar
44-
CsvSource -> CsvSource
43+
fooBar, FooBar
44+
CsvSource, CsvSource
4545
""")
4646
void convertsToUpperCamelCase(String input, String expected) {
4747
String converted = caseConverter.toUpperCamelCase(input);

0 commit comments

Comments
 (0)