diff options
author | Sean Griffin <sean@thoughtbot.com> | 2015-02-10 12:32:11 -0700 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2015-02-10 12:36:18 -0700 |
commit | 7210a0371f3739b8b8b02b56a3310421f0c3556e (patch) | |
tree | 788c2eebd669762610a0e0133c5ac4485a0c318d | |
parent | 3d91083e1430cd2b9af747ed5851e406808ee86f (diff) | |
download | rails-7210a0371f3739b8b8b02b56a3310421f0c3556e.tar.gz rails-7210a0371f3739b8b8b02b56a3310421f0c3556e.tar.bz2 rails-7210a0371f3739b8b8b02b56a3310421f0c3556e.zip |
Actually fix the build
Like for real this time. I checked.
-rw-r--r-- | railties/test/generators/plugin_generator_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/generators/plugin_generator_test.rb b/railties/test/generators/plugin_generator_test.rb index cc9ad82690..39a113f952 100644 --- a/railties/test/generators/plugin_generator_test.rb +++ b/railties/test/generators/plugin_generator_test.rb @@ -198,7 +198,7 @@ class PluginGeneratorTest < Rails::Generators::TestCase assert_match(/run bundle install/, result) assert_match(/Using bukkits \(?0\.0\.1\)?/, result) assert_match(/Bundle complete!/, result) - assert_equal 1, result.scan("Your bundle is complete").size + assert_equal 1, result.scan("Bundle complete!").size end def test_skipping_javascripts_without_mountable_option |