From 5f736d431951baa2c6e5113322092f7f85d03ae4 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 30 Jun 2019 09:54:21 +0900 Subject: Suppress "literal in condition" warnings --- test/ruby/test_ast.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_ast.rb b/test/ruby/test_ast.rb index aca9313529..ee9c1ddc00 100644 --- a/test/ruby/test_ast.rb +++ b/test/ruby/test_ast.rb @@ -286,11 +286,11 @@ class TestAst < Test::Unit::TestCase end def test_while - node = RubyVM::AbstractSyntaxTree.parse('1 while 1') + node = RubyVM::AbstractSyntaxTree.parse('1 while qux') _, _, body = *node.children assert_equal(:WHILE, body.type) type1 = body.children[2] - node = RubyVM::AbstractSyntaxTree.parse('begin 1 end while 1') + node = RubyVM::AbstractSyntaxTree.parse('begin 1 end while qux') _, _, body = *node.children assert_equal(:WHILE, body.type) type2 = body.children[2] @@ -298,11 +298,11 @@ class TestAst < Test::Unit::TestCase end def test_until - node = RubyVM::AbstractSyntaxTree.parse('1 until 1') + node = RubyVM::AbstractSyntaxTree.parse('1 until qux') _, _, body = *node.children assert_equal(:UNTIL, body.type) type1 = body.children[2] - node = RubyVM::AbstractSyntaxTree.parse('begin 1 end until 1') + node = RubyVM::AbstractSyntaxTree.parse('begin 1 end until qux') _, _, body = *node.children assert_equal(:UNTIL, body.type) type2 = body.children[2] -- cgit v1.2.3