Skip to content

Commit 5e92090

Browse files
Fix clang-format style in LinearEquationTest
1 parent d56f98c commit 5e92090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ void testSolveWithNegativeA() {
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)));
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)