Skip to content

Commit d56f98c

Browse files
Fix clang-format style in LinearEquationTest
1 parent 387d1fb commit d56f98c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@ void testSolveWithNegativeA() {
3131
@Test
3232
void testAllIllegalInput() {
3333
assertAll(() -> assertThrows(IllegalArgumentException.class, () -> LinearEquation.solve(0, 5)), () -> assertThrows(IllegalArgumentException.class, () -> LinearEquation.solve(0, 0)), () -> assertThrows(IllegalArgumentException.class, () -> LinearEquation.solve(0, -3)));
34-
3534
}
3635
}

0 commit comments

Comments
 (0)