diff options
| author | KOBAYASHI Shuji <[email protected]> | 2019-03-25 21:39:11 +0900 |
|---|---|---|
| committer | KOBAYASHI Shuji <[email protected]> | 2019-03-25 21:39:11 +0900 |
| commit | b489ddcbd16535b1a4bd89d4890135fe2c734baa (patch) | |
| tree | eb6da8f07220614c846379d850c4f1b287839691 /test | |
| parent | 33a9840e4a2db7b5136850f23b0185a7d0a6c9c9 (diff) | |
| download | mruby-b489ddcbd16535b1a4bd89d4890135fe2c734baa.tar.gz mruby-b489ddcbd16535b1a4bd89d4890135fe2c734baa.zip | |
Remove implementation of `Symbol#===`
For reducing program size.
Diffstat (limited to 'test')
| -rw-r--r-- | test/t/symbol.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/symbol.rb b/test/t/symbol.rb index fdce0f378..5c674a9cb 100644 --- a/test/t/symbol.rb +++ b/test/t/symbol.rb @@ -13,8 +13,8 @@ assert('Symbol', '15.2.11') do end assert('Symbol#===', '15.2.11.3.1') do - assert_true :abc == :abc - assert_false :abc == :cba + assert_true :abc === :abc + assert_false :abc === :cba end assert('Symbol#id2name', '15.2.11.3.2') do |
