summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-09-09 23:34:30 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-09-09 23:35:03 +0900
commit141db4f383b6cb74bf17aa8b5deeaa04d313946d (patch)
tree26329e7409f8df9677f72231dcbd6ea12fdecb69 /test
parent34839e41f181fca0655754c152e42e7faca56adb (diff)
test/psych/test_scalar_scanner.rb: Prevent a warning
``` [ 4696/20990] TestAst#test_ranges:test/psych/test_scalar_scanner.rb(none):138: warning: ambiguous first argument; put parentheses or a space even after `-' operator ``` http://rubyci.s3.amazonaws.com/ubuntu/ruby-master/log/20210909T123007Z.log.html.gz
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_scalar_scanner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/psych/test_scalar_scanner.rb b/test/psych/test_scalar_scanner.rb
index abd5515501..ebc9fbdcd2 100644
--- a/test/psych/test_scalar_scanner.rb
+++ b/test/psych/test_scalar_scanner.rb
@@ -135,7 +135,7 @@ module Psych
assert_equal 1, ss.tokenize('1')
assert_equal 1, ss.tokenize('+1')
- assert_equal -1, ss.tokenize('-1')
+ assert_equal(-1, ss.tokenize('-1'))
assert_equal 0b010101010, ss.tokenize('0b010101010')
assert_equal 0b010101010, ss.tokenize('0b0,1_0,1_,0,1_01,0')