diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-02-12 18:20:40 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-02-12 19:09:02 +0100 |
commit | db0ecce64411a427538818810862fe6e950b87ea (patch) | |
tree | b59cbf9497a4694466cff0c450818fa489fc27de /spec/commands/exec_spec.rb | |
parent | 88bf0747065abb6b091bf653b14bc20dfc44431e (diff) | |
download | bundler-db0ecce64411a427538818810862fe6e950b87ea.tar.gz |
Spec behaves consistenly across OS's apparently
Diffstat (limited to 'spec/commands/exec_spec.rb')
-rw-r--r-- | spec/commands/exec_spec.rb | 2 |
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 |