diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-25 22:34:40 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-25 22:34:40 +0900 |
| commit | 3925ce9f6e78c555bed44e486963e3b93c513fd9 (patch) | |
| tree | 6275c772aacd3578acd88328c5e1f55409c3be2a | |
| parent | 218d1889361ec373d0c75f7f220e666a6a0cbd6b (diff) | |
| parent | 2c451dd1fc873690832a277a4c9160d98865990c (diff) | |
| download | mruby-3925ce9f6e78c555bed44e486963e3b93c513fd9.tar.gz mruby-3925ce9f6e78c555bed44e486963e3b93c513fd9.zip | |
Merge pull request #2312 from take-cheeze/kind_of
Use `assert_kind_of` instead in `Proc#inspect` test.
| -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 |
