diff options
| author | Jun Hiroe <[email protected]> | 2013-08-02 21:48:59 +0900 |
|---|---|---|
| committer | Jun Hiroe <[email protected]> | 2013-08-02 21:48:59 +0900 |
| commit | 6d9b61248da0137c591801d904506d8fd380a70d (patch) | |
| tree | 316cb395a20f95f48450d8e27937df969fa5c83e | |
| parent | b7651d212bb3d8a128c9556357e6dc0fb91580ff (diff) | |
| download | mruby-6d9b61248da0137c591801d904506d8fd380a70d.tar.gz mruby-6d9b61248da0137c591801d904506d8fd380a70d.zip | |
I fix order of actual and expect test value in localjumperror.rb.
| -rw-r--r-- | test/t/localjumperror.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/localjumperror.rb b/test/t/localjumperror.rb index 857b0ce65..a7d18b3b1 100644 --- a/test/t/localjumperror.rb +++ b/test/t/localjumperror.rb @@ -2,7 +2,7 @@ # LocalJumpError ISO Test assert('LocalJumpError', '15.2.25') do - assert_equal LocalJumpError.class, Class + assert_equal Class, LocalJumpError.class assert_raise LocalJumpError do # this will cause an exception due to the wrong location retry |
