Update MapDiffUtilsTests.kt

This commit is contained in:
InsanusMokrassar 2023-05-13 15:17:08 +06:00 committed by GitHub
parent ac34050285
commit 3573b2c558
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ class MapDiffUtilsTests {
@Test
fun testMapDiffRemoved() {
val oldMap = mapOf("a" to 1, "b" to 2, "c" to 3)
val newMap = mapOf("a" to 1, "c" to 3, "d" to 4)
val newMap = mapOf("a" to 1, "c" to 3)
val diff = oldMap.diff(newMap)