Skip to content

Commit 7bf0603

Browse files
committed
Fix tests
1 parent 679d14e commit 7bf0603

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assertk/src/commonTest/kotlin/test/assertk/assertions/IterableTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ class IterableTest {
432432
| at index:0 expected:<("one", 2)>
433433
| at index:0 unexpected:<("one", 1)>
434434
| at index:1 expected:<("two", 1)>
435-
| at index:1 unexpected:<("two", 2)> ([Thing(one=one, two=1, three=1), Thing(one=two, two=2, three=2)])""".trimMargin(),
435+
| at index:1 unexpected:<("two", 2)> ([Thing(one=one, two=1, three=1, four=[]), Thing(one=two, two=2, three=2, four=[])])""".trimMargin(),
436436
error.message
437437
)
438438
}
@@ -454,7 +454,7 @@ class IterableTest {
454454
| at index:0 expected:<("one", 1, '2')>
455455
| at index:0 unexpected:<("one", 1, '1')>
456456
| at index:1 expected:<("two", 2, '3')>
457-
| at index:1 unexpected:<("two", 2, '2')> ([Thing(one=one, two=1, three=1), Thing(one=two, two=2, three=2)])""".trimMargin(),
457+
| at index:1 unexpected:<("two", 2, '2')> ([Thing(one=one, two=1, three=1, four=[]), Thing(one=two, two=2, three=2, four=[])])""".trimMargin(),
458458
error.message
459459
)
460460
}

0 commit comments

Comments
 (0)