diff options
| author | Jun Hiroe <[email protected]> | 2013-08-02 00:28:37 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2013-08-02 20:54:21 +0900 |
| commit | f71cacc4caf51098eec6a517d8237efbe4a72fdc (patch) | |
| tree | c41769c542ada288862b1e8ba1179fb8aa4de66e /test | |
| parent | 284dc1be090f6434357e9fec514b926d19998662 (diff) | |
| download | mruby-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.rb | 4 |
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 |
