Skip to content

Commit 5aff753

Browse files
committed
style: fix formatting checkstyle
1 parent e7adb6d commit 5aff753

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/stacks/DuplicateBracketsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ void testDuplicateBracketsFalseCases(String input) {
4848

4949
static Stream<Arguments> provideInputsThatShouldReturnFalse() {
5050
return Stream.of(Arguments.of("( )"), // whitespace inside brackets
51-
Arguments.of("abc + def"), // no brackets
52-
Arguments.of("(a + (b * c)) - (d / e)") // complex, but no duplicates
51+
Arguments.of("abc + def"), // no brackets
52+
Arguments.of("(a + (b * c)) - (d / e)") // complex, but no duplicates
5353
);
5454
}
5555
}

0 commit comments

Comments
 (0)