summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-03-02 21:14:41 +0900
committerGitHub <[email protected]>2019-03-02 21:14:41 +0900
commit83a1df3785a248cdd570e18328d09446f9afebb6 (patch)
tree9b6f93fb18fef5b3abfa58227a87c034c6e155f1 /test
parentad45f51cafd046d41c437df35e453f5450ae6ee9 (diff)
parent729ab86d491c8dbdf8c7fb4c96169eb4af9f4129 (diff)
downloadmruby-83a1df3785a248cdd570e18328d09446f9afebb6.tar.gz
mruby-83a1df3785a248cdd570e18328d09446f9afebb6.zip
Merge pull request #4309 from shuujii/fix-missing-assertion-in-test-t-class.rb
Fix missing assertion in `test/t/class.rb`
Diffstat (limited to 'test')
-rw-r--r--test/t/class.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/class.rb b/test/t/class.rb
index 6a0a3225c..290ecf74a 100644
--- a/test/t/class.rb
+++ b/test/t/class.rb
@@ -365,7 +365,7 @@ assert('clone Class') do
end
end
- Foo.clone.new.func
+ assert_true(Foo.clone.new.func)
end
assert('class variable and class << self style class method') do