double quotes for brew style

This commit is contained in:
thibhero 2025-05-31 23:02:01 -04:00
parent b1c8567977
commit 01ad6b53d3
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ RSpec.describe Homebrew::Cmd::UpgradeCmd do
content = <<~RUBY content = <<~RUBY
depends_on "testball5" depends_on "testball5"
# should work as its not building but test doesnt pass if dependant # should work as it's not building but test doesn't pass if dependant
# depends_on "build" => :build # depends_on "build" => :build
depends_on "installed" depends_on "installed"
version "0.1" version "0.1"

View File

@ -151,7 +151,7 @@ RSpec.shared_context "integration test" do # rubocop:disable RSpec/ContextWordin
program_name = "test" program_name = "test"
end end
tarball_name = "#{prefix}-0.1#{'-linux' if OS.linux?}.tbz" tarball_name = "#{prefix}-0.1#{"-linux" if OS.linux?}.tbz"
tarball = TEST_FIXTURE_DIR / "tarballs/#{tarball_name}" tarball = TEST_FIXTURE_DIR / "tarballs/#{tarball_name}"
content = <<~RUBY content = <<~RUBY