diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-07-13 13:16:30 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-07-13 13:16:30 +0900 |
| commit | a9fd2e646492699894d33eaf3de7336356ce6726 (patch) | |
| tree | d3bbcc1a09edfc074f8abe274450387bbe7c52ad | |
| parent | 9741df100bb84a858725dba58705a908e5bdca4c (diff) | |
| download | mruby-a9fd2e646492699894d33eaf3de7336356ce6726.tar.gz mruby-a9fd2e646492699894d33eaf3de7336356ce6726.zip | |
Resolve ambiguous argument warning.
| -rw-r--r-- | mrbgems/mruby-complex/test/complex.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-complex/test/complex.rb b/mrbgems/mruby-complex/test/complex.rb index ab882664e..5b7c3bfa4 100644 --- a/mrbgems/mruby-complex/test/complex.rb +++ b/mrbgems/mruby-complex/test/complex.rb @@ -50,7 +50,7 @@ assert 'Complex#-' do end assert 'Complex#-@' do - assert_complex -Complex(1, 2), (-1 - 2i) + assert_complex(-Complex(1, 2), (-1 - 2i)) end assert 'Complex#/' do |
