Skip to content

Commit 4884b15

Browse files
committed
Fixed test
1 parent 6dbfafb commit 4884b15

File tree

1 file changed

+1
-1
lines changed
  • src/test/kotlin/g3501_3600/s3569_maximize_count_of_distinct_primes_after_split

1 file changed

+1
-1
lines changed

src/test/kotlin/g3501_3600/s3569_maximize_count_of_distinct_primes_after_split/SolutionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ internal class SolutionTest {
2626
fun maximumCount3() {
2727
assertThat<IntArray>(
2828
Solution().maximumCount(intArrayOf(2, 34), arrayOf<IntArray>(intArrayOf(1, 2), intArrayOf(1, 3))),
29-
equalTo<IntArray>(intArrayOf(2, 3)),
29+
equalTo<IntArray>(intArrayOf(2, 2)),
3030
)
3131
}
3232

0 commit comments

Comments
 (0)