Skip to content

Commit 667586b

Browse files
test: fix test cases
1 parent a106cc2 commit 667586b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

testing/test_error_diffs.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,14 +208,12 @@ def test_this():
208208
"""
209209
> assert result == expected
210210
E AssertionError: assert {'d': 4, 'c': 3, 'b': 2, 'a': 1} == {'d': 4, 'c': 3, 'e': 5}
211-
E
212211
E Common items:
213212
E {'d': 4, 'c': 3}
214213
E Left contains 2 more items:
215214
E {'b': 2, 'a': 1}
216215
E Right contains 1 more item:
217216
E {'e': 5}
218-
E
219217
E Full diff:
220218
E {
221219
E 'd': 4,
@@ -239,15 +237,13 @@ def test_this():
239237
"""
240238
> assert result == expected
241239
E AssertionError: assert {'c': 3, 'd': 4, 'b': 2, 'a': 1} == {'d': 5, 'c': 3, 'b': 1}
242-
E
243240
E Common items:
244241
E {'c': 3}
245242
E Differing items:
246243
E {'d': 4} != {'d': 5}
247244
E {'b': 2} != {'b': 1}
248245
E Left contains 1 more item:
249246
E {'a': 1}
250-
E
251247
E Full diff:
252248
E {
253249
E - 'd': 5,

0 commit comments

Comments
 (0)