summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2018-03-18 15:06:10 -0600
committermo <mo.khan@gmail.com>2018-03-18 15:06:10 -0600
commitd4a108a36029e368f11e237447134731f806c276 (patch)
treecd394996efa9604e83bd86517b2ee110444b0226
parent6ceb6ebc792da57d8105cc8a1db7d42075146223 (diff)
remove bundle exec ruby from test command.
-rw-r--r--spec/support/shell_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shell_helpers.rb b/spec/support/shell_helpers.rb
index 756b0e2..c22da0e 100644
--- a/spec/support/shell_helpers.rb
+++ b/spec/support/shell_helpers.rb
@@ -10,7 +10,7 @@ RSpec.shared_context 'when executing the cli' do
let(:env) {}
def execute(command, mute: false, env: self.env)
- full_command = "#{env} bundle exec ruby ./exe/saml-kit #{command} 2>&1"
+ full_command = "#{env} ./exe/saml-kit #{command} 2>&1"
puts full_command unless mute
output = `#{full_command}`
[$CHILD_STATUS, output]