diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-16 04:42:58 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-16 04:42:58 -0700 |
| commit | d60362b38bad741a03f03c9a25b6694286c44211 (patch) | |
| tree | decde0f21c76dbb5a686d9874dc27886215b55c5 /test/t/indexerror.rb | |
| parent | 8dcbf5e4ac09b23b02ca76d727a91136c3a7b3cd (diff) | |
| parent | 1a6731fbdeb2642d95aeeddc2e8bee5a288d5f2e (diff) | |
| download | mruby-d60362b38bad741a03f03c9a25b6694286c44211.tar.gz mruby-d60362b38bad741a03f03c9a25b6694286c44211.zip | |
Merge pull request #1284 from Bovi-Li/improve-test-2
Improve Test Infrastructure (Part 2)
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 - |
