diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-12-24 17:58:27 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-12-24 17:58:27 -0800 |
| commit | ab47d907b696a0e1d96d44f07fceaade494de139 (patch) | |
| tree | d0786edd5220d38eeb93f728b9671e816aefa7cd | |
| parent | 673d9183cf7ea96cb695187ccbfac18b3fd16ec2 (diff) | |
| parent | 5ab9979ba452437719eaf9e413e4c228925833b1 (diff) | |
| download | mruby-ab47d907b696a0e1d96d44f07fceaade494de139.tar.gz mruby-ab47d907b696a0e1d96d44f07fceaade494de139.zip | |
Merge pull request #1619 from carsonmcdonald/fixmoduleattrtest
Change :vattr= to :cattr= in respond_to? test
| -rw-r--r-- | test/t/module.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/module.rb b/test/t/module.rb index ec85d7d35..170eb925a 100644 --- a/test/t/module.rb +++ b/test/t/module.rb @@ -83,7 +83,7 @@ assert('Module#attr', '15.2.2.4.11') do assert_true AttrTest.respond_to?(:cattr) assert_true test.respond_to?(:iattr) - assert_false AttrTest.respond_to?(:vattr=) + assert_false AttrTest.respond_to?(:cattr=) assert_false test.respond_to?(:iattr=) test.iattr_val = 'test' |
