diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-20 22:59:35 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-20 22:59:35 +0900 |
| commit | 58b877c4a7aa61cfc1e1d39629d1382780fa5f69 (patch) | |
| tree | 8484fb7033d05db2fa0b2752f73b5364e825f754 | |
| parent | 2529f1edba6095301ca0278cdedaf8b47248a4d1 (diff) | |
| download | mruby-58b877c4a7aa61cfc1e1d39629d1382780fa5f69.tar.gz mruby-58b877c4a7aa61cfc1e1d39629d1382780fa5f69.zip | |
fix test to check class variables in superclasses
| -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 4b689ea5b..716a9ab59 100644 --- a/test/t/module.rb +++ b/test/t/module.rb @@ -88,7 +88,7 @@ assert('Module#class_variables', '15.2.2.4.19') do end Test4ClassVariables1.class_variables == [:@@var1] && - Test4ClassVariables2.class_variables == [:@@var2] + Test4ClassVariables2.class_variables == [:@@var2, :@@var1] end assert('Module#const_defined?', '15.2.2.4.20') do |
