You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.assertEquals("Expect reflexivity on an outer join in terms of the keys.", ourChanges.mergeByKey(theirChanges).keySet, theirChanges
134
134
.mergeByKey(ourChanges)
135
135
.keys)
136
136
}
@@ -153,22 +153,22 @@ class MapDecoratorTest {
153
153
154
154
ourChanges.mergeByKey(theirChangesRedux)
155
155
156
-
Assert.assertEquals("Expect all the keys to appear in an outer join, but they don't.", ourChanges.mergeByKey(theirChangesRedux).keys, allKeys)
156
+
Assert.assertEquals("Expect all the keys to appear in an outer join.", ourChanges.mergeByKey(theirChangesRedux).keys, allKeys)
157
157
158
158
theirChangesRedux.mergeByKey(ourChanges)
159
159
160
-
Assert.assertEquals("Expect all the keys to appear in an outer join, and they do, good.", theirChangesRedux.mergeByKey(ourChanges).keys, allKeys)
160
+
Assert.assertEquals("Expect all the keys to appear in an outer join.", theirChangesRedux.mergeByKey(ourChanges).keys, allKeys)
161
161
162
162
Assert.assertTrue("Expect the same associated values to appear in the join taken either way around, albeit swapped around and not necessarily in the same key order.",
0 commit comments