Skip to content

Commit fbec9ec

Browse files
the 'from_end' should not be reversed
1 parent a29a07f commit fbec9ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytest_ordering/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def _order_tests(tests):
9292
yield test
9393

9494
# run test from end
95-
for test_order in sorted(from_end, reverse=True):
95+
for test_order in sorted(from_end):
9696
for test in from_end[test_order]:
9797
yield test
9898

0 commit comments

Comments
 (0)