aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/command/spellchecker_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test/command/spellchecker_test.rb')
-rw-r--r--railties/test/command/spellchecker_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/command/spellchecker_test.rb b/railties/test/command/spellchecker_test.rb
index aff50a3e73..e6a7a3957c 100644
--- a/railties/test/command/spellchecker_test.rb
+++ b/railties/test/command/spellchecker_test.rb
@@ -5,6 +5,6 @@ require "rails/command/spellchecker"
class Rails::Command::SpellcheckerTest < ActiveSupport::TestCase
test "suggests a word correction from dictionary" do
- assert_equal %w(thin cgi puma), Rails::Command::Spellchecker.suggest("tin", from: %w(puma thin cgi))
+ assert_equal "thin", Rails::Command::Spellchecker.suggest("tin", from: %w(puma thin cgi))
end
end