diff options
| author | take_cheeze <[email protected]> | 2014-05-24 23:18:03 +0900 |
|---|---|---|
| committer | take_cheeze <[email protected]> | 2014-05-24 23:18:03 +0900 |
| commit | 2c451dd1fc873690832a277a4c9160d98865990c (patch) | |
| tree | f2a17b37924c91675af41f0934a40f5b4f7c5253 /mrbgems/mruby-proc-ext | |
| parent | 229e7fe245535780fcad83527bfe2e9a09c8c023 (diff) | |
| download | mruby-2c451dd1fc873690832a277a4c9160d98865990c.tar.gz mruby-2c451dd1fc873690832a277a4c9160d98865990c.zip | |
Use `assert_kind_of` instead.
Diffstat (limited to 'mrbgems/mruby-proc-ext')
| -rw-r--r-- | mrbgems/mruby-proc-ext/test/proc.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-proc-ext/test/proc.rb b/mrbgems/mruby-proc-ext/test/proc.rb index 0f5ecfb94..1565873a0 100644 --- a/mrbgems/mruby-proc-ext/test/proc.rb +++ b/mrbgems/mruby-proc-ext/test/proc.rb @@ -10,7 +10,7 @@ end assert('Proc#inspect') do ins = Proc.new{}.inspect - assert_true ins.kind_of? String + assert_kind_of String, ins end assert('Proc#lambda?') do |
