diff --git a/Library/Homebrew/test/cmd/tap_spec.rb b/Library/Homebrew/test/cmd/tap_spec.rb index 1f2c389680..021dd6677f 100644 --- a/Library/Homebrew/test/cmd/tap_spec.rb +++ b/Library/Homebrew/test/cmd/tap_spec.rb @@ -9,7 +9,7 @@ describe "brew tap" do it "taps a given Tap", :integration_test do path = setup_test_tap - expect { brew "tap", "--force-auto-update", "--full", "homebrew/bar", path/".git" } + expect { brew "tap", "--force-auto-update", "homebrew/bar", path/".git" } .to output(/Tapped/).to_stderr .and be_a_success end diff --git a/Library/Homebrew/test/support/helper/spec/shared_context/integration_test.rb b/Library/Homebrew/test/support/helper/spec/shared_context/integration_test.rb index 7cd39aade6..9ef36a0175 100644 --- a/Library/Homebrew/test/support/helper/spec/shared_context/integration_test.rb +++ b/Library/Homebrew/test/support/helper/spec/shared_context/integration_test.rb @@ -220,7 +220,7 @@ RSpec.shared_context "integration test" do # rubocop:disable RSpec/ContextWordin system "git", "clone", "--shared", system_tap_path, tap.path system "git", "-C", tap.path, "checkout", "master" else - tap.install(full_clone: false, quiet: true) + tap.install(quiet: true) end end end