aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_string.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-07-18 10:49:10 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-07-18 10:49:10 +0000
commit15a2304f5c0646729944007de0118bc18a87d2ed (patch)
tree72951dd82999db71086247981c561db5290a469f /test/ruby/test_string.rb
parent21ddc66ca442d59973295221165e04a9d25e01ab (diff)
downloadruby-15a2304f5c0646729944007de0118bc18a87d2ed.tar.gz
fix typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_string.rb')
-rw-r--r--test/ruby/test_string.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb
index 2cd9cbf4c8..e68a3078eb 100644
--- a/test/ruby/test_string.rb
+++ b/test/ruby/test_string.rb
@@ -2740,7 +2740,7 @@ CODE
assert_predicate(-str, :frozen?)
assert_same(str, +str)
- assert_not_send(str, -str)
+ assert_not_same(str, -str)
str = "bar".freeze
assert_predicate(str, :frozen?)