summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--test/ruby/test_parse.rb6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 116d5f0029..34d11eb65d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@ Sun Sep 7 01:07:10 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (yylex): "1.upto 2 {|i| p i }" should be syntax error.
[ruby-dev:36008]
+ * test/ruby/test_parse.rb (TestParse): update a test not to use
+ recently fixed inconsistent syntax.
+
Sun Sep 7 00:37:25 2008 Tanaka Akira <akr@fsij.org>
* include/ruby/encoding.h (ECONV_ERROR_HANDLER_MASK): defined.
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)