diff options
author | Michael Pereira <pereira.m@gmail.com> | 2016-05-10 19:49:06 +0000 |
---|---|---|
committer | Michael Pereira <pereira.m@gmail.com> | 2016-05-10 19:49:06 +0000 |
commit | 321106fbf5e92f6bcad8bba78e5ed59642777747 (patch) | |
tree | 98834b4c8b81c8272a8b033a0fb9990566b5f6cf | |
parent | ff65b0cc3d105049c8c3edd64eede7143dff8281 (diff) | |
download | chef-321106fbf5e92f6bcad8bba78e5ed59642777747.tar.gz |
remove extra space from expected unit test output
-rw-r--r-- | spec/unit/provider/git_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/provider/git_spec.rb b/spec/unit/provider/git_spec.rb index 7f8e98646d..6364fc9476 100644 --- a/spec/unit/provider/git_spec.rb +++ b/spec/unit/provider/git_spec.rb @@ -269,7 +269,7 @@ SHAS context "with a user id" do let(:deploy_user) { 123 } - let(:expected_cmd) { 'git clone "git://github.com/opscode/chef.git" "/my/deploy/dir"' } + let(:expected_cmd) { 'git clone "git://github.com/opscode/chef.git" "/my/deploy/dir"' } let(:default_options) do { :user => 123, |