Skip to content

Commit e7adb6d

Browse files
committed
style: fix formatting checkstyle
1 parent 65efd5d commit e7adb6d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ void testDuplicateBracketsFalseCases(String input) {
4747
}
4848

4949
static Stream<Arguments> provideInputsThatShouldReturnFalse() {
50-
return Stream.of(
51-
Arguments.of("( )"), // whitespace inside brackets
50+
return Stream.of(Arguments.of("( )"), // whitespace inside brackets
5251
Arguments.of("abc + def"), // no brackets
5352
Arguments.of("(a + (b * c)) - (d / e)") // complex, but no duplicates
5453
);

0 commit comments

Comments
 (0)