From 7ae76a9e6ba17c30cc049ccc3e796123675c72c2 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 6 Sep 2008 22:14:28 +0000 Subject: * test/ruby/test_parse.rb (TestParse): update a test not to use recently fixed inconsistent syntax. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_parse.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_parse.rb b/test/ruby/test_parse.rb index e372ff6367..e5c9b77ac1 100644 --- a/test/ruby/test_parse.rb +++ b/test/ruby/test_parse.rb @@ -105,7 +105,7 @@ class TestParse < Test::Unit::TestCase a = nil assert_nothing_raised do t.instance_eval <<-END - a = bar "foo" { "bar" } + a = bar "foo" do "bar" end END end assert_equal("foobar", a) @@ -113,7 +113,7 @@ class TestParse < Test::Unit::TestCase a = nil assert_nothing_raised do eval <<-END - a = t::bar "foo" { "bar" } + a = t::bar "foo" do "bar" end END end assert_equal("foobar", a) @@ -260,7 +260,7 @@ class TestParse < Test::Unit::TestCase a = nil assert_nothing_raised do eval <<-END - o.foo 1 {|; a| a = 42 } + o.foo 1 do|; a| a = 42 end END end assert_nil(a) -- cgit v1.2.3