summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-12 18:20:40 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-12 19:09:02 +0100
commitdb0ecce64411a427538818810862fe6e950b87ea (patch)
treeb59cbf9497a4694466cff0c450818fa489fc27de
parent88bf0747065abb6b091bf653b14bc20dfc44431e (diff)
downloadbundler-db0ecce64411a427538818810862fe6e950b87ea.tar.gz
Spec behaves consistenly across OS's apparently
-rw-r--r--spec/commands/exec_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/exec_spec.rb b/spec/commands/exec_spec.rb
index c5c34f4eae..b209edc033 100644
--- a/spec/commands/exec_spec.rb
+++ b/spec/commands/exec_spec.rb
@@ -559,7 +559,7 @@ RSpec.describe "bundle exec" do
ex << "raise SignalException, 'SIGTERM'\n"
ex
end
- let(:expected_err) { RUBY_PLATFORM =~ /darwin/ ? "" : "Terminated" }
+ let(:expected_err) { "" }
let(:exit_code) do
# signal mask 128 + plus signal 15 -> TERM
# this is specified by C99