diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-02 20:41:55 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-02 20:41:55 -0700 |
| commit | f2b31afb39da09e9a722b86c4cecab57716db71b (patch) | |
| tree | 0cd2a94c9b6fd17ecb80e80559ee114e3b8fb838 /test/t/rangeerror.rb | |
| parent | b4858c82f8ffd8d47626a754a78f7dae68bc7ea9 (diff) | |
| parent | ba9fe99e7499176614a4149f0de49d6598126755 (diff) | |
| download | mruby-f2b31afb39da09e9a722b86c4cecab57716db71b.tar.gz mruby-f2b31afb39da09e9a722b86c4cecab57716db71b.zip | |
Merge pull request #1429 from suzukaze/fix-order-of-expected-and-actual
I fix order of expected and actual from basicobject.rb to true.rb in folder '/test/t'.
Diffstat (limited to 'test/t/rangeerror.rb')
| -rw-r--r-- | test/t/rangeerror.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/rangeerror.rb b/test/t/rangeerror.rb index 2a15ce225..8dc683745 100644 --- a/test/t/rangeerror.rb +++ b/test/t/rangeerror.rb @@ -2,9 +2,9 @@ # RangeError ISO Test assert('RangeError', '15.2.26') do - assert_equal RangeError.class, Class + assert_equal Class, RangeError.class end assert('RangeError superclass', '15.2.26.2') do - assert_equal RangeError.superclass, StandardError + assert_equal StandardError, RangeError.superclass end |
