diff options
| author | Jun Hiroe <[email protected]> | 2013-08-02 22:24:05 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2013-08-02 22:40:12 +0900 |
| commit | f2fdac889b16467007d215e56b8357746f75cdc0 (patch) | |
| tree | c4c059b91f7b9e196185fa62d22219ad730ab822 /test/t/runtimeerror.rb | |
| parent | 2e24ba161b9a06f3335c3d68ef8eb5dffdcbd795 (diff) | |
| download | mruby-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.rb | 2 |
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 |
