Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvio D'Alessandro committed Jul 6, 2022
1 parent 679d14e commit 7bf0603
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ class IterableTest {
| at index:0 expected:<("one", 2)>
| at index:0 unexpected:<("one", 1)>
| at index:1 expected:<("two", 1)>
| at index:1 unexpected:<("two", 2)> ([Thing(one=one, two=1, three=1), Thing(one=two, two=2, three=2)])""".trimMargin(),
| at index:1 unexpected:<("two", 2)> ([Thing(one=one, two=1, three=1, four=[]), Thing(one=two, two=2, three=2, four=[])])""".trimMargin(),
error.message
)
}
Expand All @@ -454,7 +454,7 @@ class IterableTest {
| at index:0 expected:<("one", 1, '2')>
| at index:0 unexpected:<("one", 1, '1')>
| at index:1 expected:<("two", 2, '3')>
| at index:1 unexpected:<("two", 2, '2')> ([Thing(one=one, two=1, three=1), Thing(one=two, two=2, three=2)])""".trimMargin(),
| at index:1 unexpected:<("two", 2, '2')> ([Thing(one=one, two=1, three=1, four=[]), Thing(one=two, two=2, three=2, four=[])])""".trimMargin(),
error.message
)
}
Expand Down

0 comments on commit 7bf0603

Please sign in to comment.