summaryrefslogtreecommitdiffhomepage
path: root/test/t/typeerror.rb
diff options
context:
space:
mode:
authorJun Hiroe <[email protected]>2013-08-02 23:17:46 +0900
committerJun Hiroe <[email protected]>2013-08-02 23:17:46 +0900
commitba9fe99e7499176614a4149f0de49d6598126755 (patch)
tree0cd2a94c9b6fd17ecb80e80559ee114e3b8fb838 /test/t/typeerror.rb
parent614577d281f5c02607472ba542cee22c2ec5e26a (diff)
downloadmruby-ba9fe99e7499176614a4149f0de49d6598126755.tar.gz
mruby-ba9fe99e7499176614a4149f0de49d6598126755.zip
I fix order of actual and expect test value in typeerror.rb.
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