diff options
| author | David Rodriguez <deivid.rodriguez@riseup.net> | 2024-01-26 09:21:24 +0100 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-02-08 14:43:56 +0900 |
| commit | 5500f880f329cc8593d3b234577994c1605b8ba4 (patch) | |
| tree | 9f9d8293779650a780e5f41dbe71fb7fcc12a363 | |
| parent | e04120772be6162499023f7245434cb5c9175344 (diff) | |
[rubygems/rubygems] Fix incorrect 4th parameter to Definition.new
https://github.com/rubygems/rubygems/commit/54948e428d
| -rw-r--r-- | spec/bundler/bundler/definition_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/bundler/definition_spec.rb b/spec/bundler/bundler/definition_spec.rb index 5e66e012c0..c4a0f0cdb8 100644 --- a/spec/bundler/bundler/definition_spec.rb +++ b/spec/bundler/bundler/definition_spec.rb @@ -10,7 +10,7 @@ RSpec.describe Bundler::Definition do allow(Bundler).to receive(:ui) { double("UI", info: "", debug: "") } end - subject { Bundler::Definition.new("Gemfile.lock", [], Bundler::SourceList.new, []) } + subject { Bundler::Definition.new("Gemfile.lock", [], Bundler::SourceList.new, {}) } context "when it's not possible to write to the file" do it "raises an PermissionError with explanation" do |
