Skip to content

Commit eae49a2

Browse files
committed
Apply spotless formatting
1 parent baadaab commit eae49a2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/test/java/com/thealgorithms/maths/ComplexNumberMultiplyTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,11 @@ void testZero() {
2424

2525
@Test
2626
void testInvalidFormat() {
27-
assertThrows(IllegalArgumentException.class,
28-
() -> ComplexNumberMultiply.multiply("1+1", "1+1i"));
27+
assertThrows(IllegalArgumentException.class, () -> ComplexNumberMultiply.multiply("1+1", "1+1i"));
2928
}
3029

3130
@Test
3231
void testNullInput() {
33-
assertThrows(IllegalArgumentException.class,
34-
() -> ComplexNumberMultiply.multiply(null, "1+1i"));
32+
assertThrows(IllegalArgumentException.class, () -> ComplexNumberMultiply.multiply(null, "1+1i"));
3533
}
3634
}

0 commit comments

Comments
 (0)