diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-03-02 21:14:41 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-03-02 21:14:41 +0900 |
| commit | 83a1df3785a248cdd570e18328d09446f9afebb6 (patch) | |
| tree | 9b6f93fb18fef5b3abfa58227a87c034c6e155f1 /test | |
| parent | ad45f51cafd046d41c437df35e453f5450ae6ee9 (diff) | |
| parent | 729ab86d491c8dbdf8c7fb4c96169eb4af9f4129 (diff) | |
| download | mruby-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.rb | 2 |
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 |
