Skip to content

Commit 6bbabd8

Browse files
author
Koushik Sai
committed
[STYLE] Apply clang-format
1 parent eb7cc47 commit 6bbabd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/recursion/FactorialRecursionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import static org.junit.jupiter.api.Assertions.assertThrows;
5+
56
import org.junit.jupiter.api.Test;
67

78
class FactorialRecursionTest {
@@ -28,7 +29,6 @@ void testFactorialOfLargerNumber() {
2829

2930
@Test
3031
void testFactorialOfNegativeNumber() {
31-
assertThrows(IllegalArgumentException.class,
32-
() -> FactorialRecursion.factorial(-1));
32+
assertThrows(IllegalArgumentException.class, () -> FactorialRecursion.factorial(-1));
3333
}
3434
}

0 commit comments

Comments
 (0)