* 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
This commit is contained in:
ko1 2012-12-19 21:28:44 +00:00
parent 7cb7d8ad1d
commit 5d92f6ec05
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Dec 20 06:25:44 2012 Koichi Sasada <ko1@atdot.net>
* 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 <zachary@zacharyscott>
* ext/.document: Add missing ext modules to .document

View File

@ -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