diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-02 20:41:55 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-02 20:41:55 -0700 |
| commit | f2b31afb39da09e9a722b86c4cecab57716db71b (patch) | |
| tree | 0cd2a94c9b6fd17ecb80e80559ee114e3b8fb838 /test/t/runtimeerror.rb | |
| parent | b4858c82f8ffd8d47626a754a78f7dae68bc7ea9 (diff) | |
| parent | ba9fe99e7499176614a4149f0de49d6598126755 (diff) | |
| download | mruby-f2b31afb39da09e9a722b86c4cecab57716db71b.tar.gz mruby-f2b31afb39da09e9a722b86c4cecab57716db71b.zip | |
Merge pull request #1429 from suzukaze/fix-order-of-expected-and-actual
I fix order of expected and actual from basicobject.rb to true.rb in folder '/test/t'.
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 |
