Commit 2e24ba16 authored by Jun Hiroe's avatar Jun Hiroe

I fix order of actual and expect test value in rangeerror.rb.

parent f467ea1a
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
# RangeError ISO Test # RangeError ISO Test
assert('RangeError', '15.2.26') do assert('RangeError', '15.2.26') do
assert_equal RangeError.class, Class assert_equal Class, RangeError.class
end end
assert('RangeError superclass', '15.2.26.2') do assert('RangeError superclass', '15.2.26.2') do
assert_equal RangeError.superclass, StandardError assert_equal StandardError, RangeError.superclass
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment