We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e3364f commit 1842d42Copy full SHA for 1842d42
src/test/kotlin/examples/kotlin/mybatis3/joins/DeprecatedJoinMapperTest.kt
@@ -276,17 +276,17 @@ class DeprecatedJoinMapperTest {
276
277
assertThat(rows).hasSize(6)
278
279
- assertThat(rows[0]).containsExactly(
+ assertThat(rows[0]).containsOnly(
280
entry("DESCRIPTION", "Catcher Glove"),
281
entry("ITEM_ID", 55)
282
)
283
284
- assertThat(rows[3]).containsExactly(
+ assertThat(rows[3]).containsOnly(
285
entry("ORDER_ID", 2),
286
entry("QUANTITY", 6)
287
288
289
- assertThat(rows[5]).containsExactly(
+ assertThat(rows[5]).containsOnly(
290
291
entry("QUANTITY", 1),
292
entry("DESCRIPTION", "Outfield Glove"),
0 commit comments