Skip to content

Commit 207b10e

Browse files
committed
Update SolutionTest.java
1 parent da2ea9f commit 207b10e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/g0301_0400/s0335_self_crossing/SolutionTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ void isSelfCrossing13() {
7373

7474
@Test
7575
void isSelfCrossing14() {
76-
assertThat(new Solution().isSelfCrossing(new int[] {1, 2, 3, 4, 5, 6, 7, 8}), equalTo(false));
76+
assertThat(
77+
new Solution().isSelfCrossing(new int[] {1, 2, 3, 4, 5, 6, 7, 8}), equalTo(false));
7778
}
7879

7980
@Test

0 commit comments

Comments
 (0)