diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-16 20:44:22 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-16 20:44:22 +0900 |
| commit | ef5087bc9ad921e35b93b9d274c35518c0d94170 (patch) | |
| tree | f254dd3629ad56a19bf21ef9c4276dea62195c8c /test/t/indexerror.rb | |
| parent | 7ba2f8554629b8b0cf088ff7c7a2f33d31873e93 (diff) | |
| parent | 6025f2c4ba682e72882189ba03ed7b4ca46c6237 (diff) | |
| download | mruby-ef5087bc9ad921e35b93b9d274c35518c0d94170.tar.gz mruby-ef5087bc9ad921e35b93b9d274c35518c0d94170.zip | |
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'test/t/indexerror.rb')
| -rw-r--r-- | test/t/indexerror.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/t/indexerror.rb b/test/t/indexerror.rb index d7c8ba148..b71766c95 100644 --- a/test/t/indexerror.rb +++ b/test/t/indexerror.rb @@ -2,10 +2,9 @@ # IndexError ISO Test assert('IndexError', '15.2.33') do - IndexError.class == Class + assert_equal IndexError.class, Class end assert('IndexError superclass', '15.2.33.2') do - IndexError.superclass == StandardError + assert_equal IndexError.superclass, StandardError end - |
