diff options
| author | Jun Hiroe <[email protected]> | 2013-08-02 22:28:03 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2013-08-02 22:40:12 +0900 |
| commit | 8f01c0732a7ece4f846b8f6ec7fdc92242a8fe51 (patch) | |
| tree | a6ce2d955d137753484cfa38002a7a2b63d6ee62 /test/t/standarderror.rb | |
| parent | f2fdac889b16467007d215e56b8357746f75cdc0 (diff) | |
| download | mruby-8f01c0732a7ece4f846b8f6ec7fdc92242a8fe51.tar.gz mruby-8f01c0732a7ece4f846b8f6ec7fdc92242a8fe51.zip | |
I fix order of actual and expect test value in standarderror.rb.
Diffstat (limited to 'test/t/standarderror.rb')
| -rw-r--r-- | test/t/standarderror.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/standarderror.rb b/test/t/standarderror.rb index 42b06d911..cab99834e 100644 --- a/test/t/standarderror.rb +++ b/test/t/standarderror.rb @@ -2,9 +2,9 @@ # StandardError ISO Test assert('StandardError', '15.2.23') do - assert_equal StandardError.class, Class + assert_equal Class, StandardError.class end assert('StandardError superclass', '15.2.23.2') do - assert_equal StandardError.superclass, Exception + assert_equal Exception, StandardError.superclass end |
