summaryrefslogtreecommitdiff
path: root/test/did_you_mean/spell_checking/test_method_name_check.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/did_you_mean/spell_checking/test_method_name_check.rb')
-rw-r--r--test/did_you_mean/spell_checking/test_method_name_check.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/did_you_mean/spell_checking/test_method_name_check.rb b/test/did_you_mean/spell_checking/test_method_name_check.rb
index 6e14e6acc4..f3a6b1c7c7 100644
--- a/test/did_you_mean/spell_checking/test_method_name_check.rb
+++ b/test/did_you_mean/spell_checking/test_method_name_check.rb
@@ -137,11 +137,4 @@ class MethodNameCheckTest < Test::Unit::TestCase
assert_correction :yield, error.corrections
assert_match "Did you mean? yield", error.to_s
end
-
- def test_does_not_suggest_yield
- error = assert_raise(NoMethodError) { 1.yeild }
-
- assert_correction [], error.corrections
- assert_not_match(/Did you mean\? +yield/, error.to_s)
- end if RUBY_ENGINE != "jruby"
end