aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2015-04-25 19:56:33 -0400
committerArthur Neves <arthurnn@gmail.com>2015-04-25 19:56:33 -0400
commit74f5491ff30ff945db1d49563903ac8e5532b0ad (patch)
tree377c9ec097aed9a3cfd601b9ca34d8d8e1f095e4 /railties/test
parent6a7cf515123889360d272e8ab4be045578dfc0fb (diff)
downloadrails-74f5491ff30ff945db1d49563903ac8e5532b0ad.tar.gz
rails-74f5491ff30ff945db1d49563903ac8e5532b0ad.tar.bz2
rails-74f5491ff30ff945db1d49563903ac8e5532b0ad.zip
Revert "Fix multiple suggestion test"
This reverts commit 6a7cf515123889360d272e8ab4be045578dfc0fb.
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/generators_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/generators_test.rb b/railties/test/generators_test.rb
index c1c92e9d37..fdcfb30090 100644
--- a/railties/test/generators_test.rb
+++ b/railties/test/generators_test.rb
@@ -37,7 +37,7 @@ class GeneratorsTest < Rails::Generators::TestCase
def test_generator_multiple_suggestions
name = :tas
output = capture(:stdout){ Rails::Generators.invoke name }
- assert_match "Maybe you meant 'task', 'job' or 'mailer'", output
+ assert_match "Maybe you meant 'task', 'job' or 'assets'", output
end
def test_help_when_a_generator_with_required_arguments_is_invoked_without_arguments