Skip to content

Commit c03caaf

Browse files
fixup! Flip test condition to improve readability
1 parent cdbd90f commit c03caaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/lang/swift/async/unwind/unwind_in_all_instructions/TestSwiftAsyncUnwindAllInstructions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ def test(self):
131131
# have some sanity check that we have hit at least a decent chunk of
132132
# them.
133133
breakpoints_not_hit = len(breakpoints)
134-
self.assertGreater(0.10, breakpoints_not_hit / num_breakpoints)
134+
self.assertLess(breakpoints_not_hit / num_breakpoints, 0.10)

0 commit comments

Comments
 (0)