Skip to content

Commit 0b1ea96

Browse files
committed
Fixed tests
1 parent 0238502 commit 0b1ea96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/kotlin/g3401_3500/s3453_separate_squares_i/SolutionTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ internal class SolutionTest {
99
fun separateSquares() {
1010
assertThat<Double>(
1111
Solution().separateSquares(arrayOf<IntArray>(intArrayOf(0, 0, 1), intArrayOf(2, 2, 1))),
12-
equalTo<Double>(1.0000000012083676),
12+
equalTo<Double>(1.0),
1313
)
1414
}
1515

1616
@Test
1717
fun separateSquares2() {
1818
assertThat<Double>(
1919
Solution().separateSquares(arrayOf<IntArray>(intArrayOf(0, 0, 2), intArrayOf(1, 1, 1))),
20-
equalTo<Double>(1.1666666677873083),
20+
equalTo<Double>(1.1666666666666667),
2121
)
2222
}
2323
}

0 commit comments

Comments
 (0)