Update tests to stop passing full_clone

This commit is contained in:
cnnrmnn 2021-05-06 10:11:21 -04:00
parent 674594f75c
commit 02993c5899
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ describe "brew tap" do
it "taps a given Tap", :integration_test do it "taps a given Tap", :integration_test do
path = setup_test_tap 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 .to output(/Tapped/).to_stderr
.and be_a_success .and be_a_success
end end

View File

@ -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", "clone", "--shared", system_tap_path, tap.path
system "git", "-C", tap.path, "checkout", "master" system "git", "-C", tap.path, "checkout", "master"
else else
tap.install(full_clone: false, quiet: true) tap.install(quiet: true)
end end
end end
end end