diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-14 05:15:08 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-14 05:15:08 +0900 |
| commit | 73d7000b8f5c3f7d2cb12e03b0a431ec3636fe21 (patch) | |
| tree | 83172778f8b22212c42cf2489d566f57033d73d1 | |
| parent | bd309f555a7fd999a4c21ba50a2fe4170b1df83f (diff) | |
| download | mruby-73d7000b8f5c3f7d2cb12e03b0a431ec3636fe21.tar.gz mruby-73d7000b8f5c3f7d2cb12e03b0a431ec3636fe21.zip | |
remove .inspect from bs_block.rb tests
| -rw-r--r-- | test/t/bs_block.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/t/bs_block.rb b/test/t/bs_block.rb index b290cb914..084d3b30f 100644 --- a/test/t/bs_block.rb +++ b/test/t/bs_block.rb @@ -322,28 +322,28 @@ assert('BS Block [ruby-dev:31147]') do def m yield end - m{|&b| b}.inspect == 'nil' + m{|&b| b} == nil end assert('BS Block [ruby-dev:31160]') do def m() yield end - m {|(v,(*))|}.inspect == 'nil' + m {|(v,(*))|} == nil end assert('BS Block 31') do def m() yield end - m {|((*))|}.inspect == 'nil' + m {|((*))|} == nil end assert('BS Block [ruby-dev:31440]') do def m yield [0] end - m{|v, &b| v}.inspect == '[0]' + m{|v, &b| v} == [0] end assert('BS Block 32') do |
