Skip to content

Commit

Permalink
* Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
iuri-gg committed Nov 20, 2023
1 parent 35d557c commit d343687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/io_waitreadable_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def io_waitreadable_sleep
def test_slow_io_waitreadable_sleep
# This test hits IO::WaitReadable exception multiple times
# For that, this test must run longer than 1 second
assert measure_io_waitreadable_sleep > 1
assert_operator measure_io_waitreadable_sleep, :>, 1
end

end
Expand All @@ -67,7 +67,7 @@ def io_waitreadable_sleep
def test_fast_io_waitreadable_sleep
# This test hits IO::WaitReadable exception multiple times
# For that, this test must run longer than 1 second
assert measure_io_waitreadable_sleep < 1
assert_operator measure_io_waitreadable_sleep, :<, 1
end

end

0 comments on commit d343687

Please sign in to comment.