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/runtimeerror.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/runtimeerror.rb')
| -rw-r--r-- | test/t/runtimeerror.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/runtimeerror.rb b/test/t/runtimeerror.rb index 3e0636186..b8d64a726 100644 --- a/test/t/runtimeerror.rb +++ b/test/t/runtimeerror.rb @@ -2,5 +2,5 @@ # RuntimeError ISO Test assert('RuntimeError', '15.2.28') do - RuntimeError.class == Class + assert_equal RuntimeError.class, Class end |
