summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-04-03 16:50:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-04-03 16:50:17 +0000
commit9ba849e63153e5e61521a03513588a724625dcd4 (patch)
tree852185149d276ef3f63b1c45101a5ef164359f4c /test/ruby
parentc592ce4023fdd6877aeeb38dfbbf54790dea238f (diff)
Fix typo
[Bug #14642] [Fix GH-1855] From: MSP-Greg <MSP-Greg@users.noreply.github.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_fiber.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_fiber.rb b/test/ruby/test_fiber.rb
index 6cb76d98d8..9761ce406c 100644
--- a/test/ruby/test_fiber.rb
+++ b/test/ruby/test_fiber.rb
@@ -385,6 +385,6 @@ class TestFiber < Test::Unit::TestCase
Fiber.new{Fiber.yield :ok}.resume
}.join
}.join
- assert_euqal :ok, ret, '[Bug #14642]'
+ assert_equal :ok, ret, '[Bug #14642]'
end
end