Skip to content

Commit 07bfcc0

Browse files
committed
with clang-format
1 parent ca48862 commit 07bfcc0

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed
Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package com.thealgorithms.strings;
22

3+
import static org.junit.jupiter.api.Assertions.assertEquals;
34
import static org.junit.jupiter.api.Assertions.assertFalse;
45
import static org.junit.jupiter.api.Assertions.assertTrue;
56

67
import java.util.stream.Stream;
7-
8-
import static org.junit.jupiter.api.Assertions.assertEquals;
9-
108
import org.junit.jupiter.api.Test;
119
import org.junit.jupiter.params.ParameterizedTest;
1210
import org.junit.jupiter.params.provider.Arguments;
@@ -19,13 +17,8 @@ public final class IsomorphicTest {
1917
public void testCheckStrings(String str1, String str2, boolean expected) {
2018
assertEquals(expected, Isomorphic.checkStrings(str1, str2));
2119
}
22-
20+
2321
private static Stream<Arguments> isomorphicProvider() {
24-
return Stream.of(
25-
Arguments.of("abbbbaac", "kffffkkd", true),
26-
Arguments.of("xyxyxy", "bnbnbn", true),
27-
Arguments.of("ghjknnmm", "wertpopo", false),
28-
Arguments.of("aaammmnnn", "ggghhhbbj", false)
29-
);
22+
return Stream.of(Arguments.of("abbbbaac", "kffffkkd", true), Arguments.of("xyxyxy", "bnbnbn", true), Arguments.of("ghjknnmm", "wertpopo", false), Arguments.of("aaammmnnn", "ggghhhbbj", false));
3023
}
3124
}

0 commit comments

Comments
 (0)