diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-07-30 14:41:09 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-07-30 14:41:09 +0900 |
| commit | 7dae0ec74c75b59b68451f16a0757149b0de49d2 (patch) | |
| tree | 3de187cc5f7b2ee2f6ea09544179abc1fb4699af /mrbgems/mruby-io/test/io.rb | |
| parent | 428e34abba4dccedbe3abc2e180716317a9d4c52 (diff) | |
| parent | 44381f0a0c306a8c778f546926d3febfdf981b45 (diff) | |
| download | mruby-7dae0ec74c75b59b68451f16a0757149b0de49d2.tar.gz mruby-7dae0ec74c75b59b68451f16a0757149b0de49d2.zip | |
Merge pull request #4606 from shuujii/refine-message-to-skip-in-nested-assert
Refine message to `skip` in nested `assert`
Diffstat (limited to 'mrbgems/mruby-io/test/io.rb')
| -rw-r--r-- | mrbgems/mruby-io/test/io.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-io/test/io.rb b/mrbgems/mruby-io/test/io.rb index 1491a4cfe..3aaa109a8 100644 --- a/mrbgems/mruby-io/test/io.rb +++ b/mrbgems/mruby-io/test/io.rb @@ -5,7 +5,7 @@ MRubyIOTestUtil.io_test_setup $cr, $crlf, $cmd = MRubyIOTestUtil.win? ? [1, "\r\n", "cmd /c "] : [0, "\n", ""] def assert_io_open(meth) - assert do + assert "assert_io_open" do fd = IO.sysopen($mrbtest_io_rfname) assert_equal Fixnum, fd.class io1 = IO.__send__(meth, fd) |
