summaryrefslogtreecommitdiffhomepage
path: root/test/t/runtimeerror.rb
diff options
context:
space:
mode:
authorJun Hiroe <[email protected]>2013-08-02 22:24:05 +0900
committerJun Hiroe <[email protected]>2013-08-02 22:40:12 +0900
commitf2fdac889b16467007d215e56b8357746f75cdc0 (patch)
treec4c059b91f7b9e196185fa62d22219ad730ab822 /test/t/runtimeerror.rb
parent2e24ba161b9a06f3335c3d68ef8eb5dffdcbd795 (diff)
downloadmruby-f2fdac889b16467007d215e56b8357746f75cdc0.tar.gz
mruby-f2fdac889b16467007d215e56b8357746f75cdc0.zip
I fix order of actual and expect test value in runtimeerror.rb.
Diffstat (limited to 'test/t/runtimeerror.rb')
-rw-r--r--test/t/runtimeerror.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/runtimeerror.rb b/test/t/runtimeerror.rb
index b8d64a726..d02cba96d 100644
--- a/test/t/runtimeerror.rb
+++ b/test/t/runtimeerror.rb
@@ -2,5 +2,5 @@
# RuntimeError ISO Test
assert('RuntimeError', '15.2.28') do
- assert_equal RuntimeError.class, Class
+ assert_equal Class, RuntimeError.class
end