Skip to content

Commit 1842d42

Browse files
committed
fix flaky test in DeprecatedJoinMapperTest#testFullJoinWithoutAliases
1 parent 6e3364f commit 1842d42

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/kotlin/examples/kotlin/mybatis3/joins/DeprecatedJoinMapperTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,17 +276,17 @@ class DeprecatedJoinMapperTest {
276276

277277
assertThat(rows).hasSize(6)
278278

279-
assertThat(rows[0]).containsExactly(
279+
assertThat(rows[0]).containsOnly(
280280
entry("DESCRIPTION", "Catcher Glove"),
281281
entry("ITEM_ID", 55)
282282
)
283283

284-
assertThat(rows[3]).containsExactly(
284+
assertThat(rows[3]).containsOnly(
285285
entry("ORDER_ID", 2),
286286
entry("QUANTITY", 6)
287287
)
288288

289-
assertThat(rows[5]).containsExactly(
289+
assertThat(rows[5]).containsOnly(
290290
entry("ORDER_ID", 2),
291291
entry("QUANTITY", 1),
292292
entry("DESCRIPTION", "Outfield Glove"),

0 commit comments

Comments
 (0)