summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-05-25 22:34:40 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-05-25 22:34:40 +0900
commit3925ce9f6e78c555bed44e486963e3b93c513fd9 (patch)
tree6275c772aacd3578acd88328c5e1f55409c3be2a
parent218d1889361ec373d0c75f7f220e666a6a0cbd6b (diff)
parent2c451dd1fc873690832a277a4c9160d98865990c (diff)
downloadmruby-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.rb2
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