diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-05-02 15:32:03 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-05-09 12:57:12 +0900 |
commit | 9d3ab15827840bb10ffebc409df772b980e52ac5 (patch) | |
tree | f84d23d9ade43da206723effec531eb2e6263612 /spec/bundler/commands/info_spec.rb | |
parent | 59fd67fc3d405e529e038172e769ff20a8fb5535 (diff) |
Relax regexp for console assertion
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7781
Diffstat (limited to 'spec/bundler/commands/info_spec.rb')
-rw-r--r-- | spec/bundler/commands/info_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/commands/info_spec.rb b/spec/bundler/commands/info_spec.rb index 2e17ee6dd8..851f50240f 100644 --- a/spec/bundler/commands/info_spec.rb +++ b/spec/bundler/commands/info_spec.rb @@ -215,7 +215,7 @@ RSpec.describe "bundle info" do G bundle "info rac" - expect(out).to match(/\A1 : rack\n2 : rack-obama\n0 : - exit -(\n>)?\z/) + expect(out).to match(/\A1 : rack\n2 : rack-obama\n0 : - exit -(\n>.*)?\z/) end end |