Skip to content

Commit

Permalink
* remove trailing spaces. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
matzbot committed Jun 25, 2022
1 parent f9c8d80 commit 7e68762
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/io/wait/test_io_wait.rb
Expand Up @@ -165,12 +165,12 @@ def test_wait_mask_writable
omit("Missing IO::WRITABLE!") unless IO.const_defined?(:WRITABLE)
assert_equal IO::WRITABLE, @w.wait(IO::WRITABLE, 0)
end

def test_wait_mask_readable
omit("Missing IO::READABLE!") unless IO.const_defined?(:READABLE)
@w.write("Hello World\n" * 3)
assert_equal IO::READABLE, @r.wait(IO::READABLE, 0)

@r.gets
assert_equal IO::READABLE, @r.wait(IO::READABLE, 0)
end
Expand Down

0 comments on commit 7e68762

Please sign in to comment.