From 141db4f383b6cb74bf17aa8b5deeaa04d313946d Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Thu, 9 Sep 2021 23:34:30 +0900 Subject: 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 --- test/psych/test_scalar_scanner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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') -- cgit v1.2.3