summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorJun Hiroe <[email protected]>2013-08-02 00:28:37 +0900
committerJun Hiroe <[email protected]>2013-08-02 20:54:21 +0900
commitf71cacc4caf51098eec6a517d8237efbe4a72fdc (patch)
treec41769c542ada288862b1e8ba1179fb8aa4de66e /test
parent284dc1be090f6434357e9fec514b926d19998662 (diff)
downloadmruby-f71cacc4caf51098eec6a517d8237efbe4a72fdc.tar.gz
mruby-f71cacc4caf51098eec6a517d8237efbe4a72fdc.zip
I fix order of actual and expect test value in indexerror.rb.
Diffstat (limited to 'test')
-rw-r--r--test/t/indexerror.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/indexerror.rb b/test/t/indexerror.rb
index b71766c95..ea008a227 100644
--- a/test/t/indexerror.rb
+++ b/test/t/indexerror.rb
@@ -2,9 +2,9 @@
# IndexError ISO Test
assert('IndexError', '15.2.33') do
- assert_equal IndexError.class, Class
+ assert_equal Class, IndexError.class
end
assert('IndexError superclass', '15.2.33.2') do
- assert_equal IndexError.superclass, StandardError
+ assert_equal StandardError, IndexError.superclass
end