From 5d92f6ec05be5df5f89f81fb926ad08faf22ee03 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 19 Dec 2012 21:28:44 +0000 Subject: [PATCH] * test/ruby/test_fiber.rb: remove a strange single quote character. With this character, this script exits by SyntaxError. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38477 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_fiber.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 706cbf3b72..8097618c69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 20 06:25:44 2012 Koichi Sasada + + * test/ruby/test_fiber.rb: remove a strange single quote character. + With this character, this script exits by SyntaxError. + Thu Dec 20 01:03:00 2012 Zachary Scott * ext/.document: Add missing ext modules to .document diff --git a/test/ruby/test_fiber.rb b/test/ruby/test_fiber.rb index ac2805920e..cc0df749b0 100644 --- a/test/ruby/test_fiber.rb +++ b/test/ruby/test_fiber.rb @@ -192,7 +192,7 @@ class TestFiber < Test::Unit::TestCase assert_normal_exit %q{ require 'fiber' Fiber.new{}.resume - 1.times{Fiber.current.transfer}' + 1.times{Fiber.current.transfer} } end