Commit 62ea5bed authored by Archie Shahidullah's avatar Archie Shahidullah :expressionless:
Browse files

Update CaesarCipherSolverTests.java

parent ba4f6404
1 merge request!1Update CaesarCipherSolverTests.java
Pipeline #36416 failed with stage
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -93,7 +93,7 @@ class CaesarCipherSolverTests {
@ValueSource(strings = { "", "HI", "HI THERE", "A B C D E F GGG", "TRUTH IS NOT A DEMOCRACY", DECLARATION})
public void testSplitBySpaces(String toSplit) {
List<String> list = CaesarCipherSolver.splitBySpaces(toSplit);
assertEquals(toSplit.trim(), String.join(" ", list));
assertIterableEquals(Arrays.asList(toSplit.trim().split(" ")), list);
}
@Order(8)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment