Skip to content

Commit ff1ad59

Browse files
committed
Fix clang error
1 parent 20892f7 commit ff1ad59

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ void testValidPrefixToInfixConversion(String prefix, String expectedInfix) {
1818
}
1919

2020
static Stream<Arguments> provideValidPrefixToInfixTestCases() {
21-
return Stream.of(
22-
Arguments.of("A", "A"), // Single operand
21+
return Stream.of(Arguments.of("A", "A"), // Single operand
2322
Arguments.of("+AB", "(A+B)"), // Addition
2423
Arguments.of("*+ABC", "((A+B)*C)"), // Addition and multiplication
2524
Arguments.of("-+A*BCD", "((A+(B*C))-D)"), // Mixed operators

0 commit comments

Comments
 (0)