summaryrefslogtreecommitdiffhomepage
path: root/test/t/typeerror.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/typeerror.rb')
-rw-r--r--test/t/typeerror.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/typeerror.rb b/test/t/typeerror.rb
index 59c3ea993..a91fb1be2 100644
--- a/test/t/typeerror.rb
+++ b/test/t/typeerror.rb
@@ -2,10 +2,10 @@
# TypeError ISO Test
assert('TypeError', '15.2.29') do
- assert_equal TypeError.class, Class
+ assert_equal Class, TypeError.class
end
assert('TypeError superclass', '15.2.29.2') do
- assert_equal TypeError.superclass, StandardError
+ assert_equal StandardError, TypeError.superclass
end