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 0262fd3 commit cb0f8a6Copy full SHA for cb0f8a6
testing/test_assertion.py
@@ -2199,8 +2199,10 @@ def test_vvv():
2199
)
2200
result.stdout.no_fnmatch_line(expected_non_vvv_arg_line)
2201
2202
+
2203
import re
2204
2205
2206
def test_dict_extra_items_preserve_insertion_order(pytester):
2207
pytester.makepyfile(
2208
test_order="""
@@ -2221,7 +2223,8 @@ def test_order():
2221
2223
assert "Left contains 2 more items:" in stdout
2222
2224
2225
dict_line = next(
- line for line in stdout.splitlines()
2226
+ line
2227
+ for line in stdout.splitlines()
2228
if "{" in line and "}" in line and "first" in line
2229
2230
@@ -2230,4 +2233,3 @@ def test_order():
2233
2231
2234
assert first != -1 and second != -1
2232
2235
assert first < second
-
0 commit comments