summaryrefslogtreecommitdiff
path: root/spec/commands
diff options
context:
space:
mode:
Diffstat (limited to 'spec/commands')
-rw-r--r--spec/commands/inject_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/inject_spec.rb b/spec/commands/inject_spec.rb
index f39818b04e..5c711b32a0 100644
--- a/spec/commands/inject_spec.rb
+++ b/spec/commands/inject_spec.rb
@@ -72,7 +72,7 @@ Usage: "bundle inject GEM VERSION"
it "add gem with multiple groups in gemfile" do
bundle "inject 'rack-obama' '>0' --group=development,test"
gemfile = bundled_app("Gemfile").read
- str = "gem 'rack-obama', '> 0', :group => [:development, :test]"
+ str = "gem 'rack-obama', '> 0', :groups => [:development, :test]"
expect(gemfile).to include str
end
end