From a2f9f89d30766379a908f33e87e50d4b311d89a1 Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Thu, 20 Apr 2023 23:37:05 -0700 Subject: [PATCH] cask/audit_spec: fix outdated test We used the binary artifact as an example of an unsigned artifact before in this test. Now that we're adding it as a signed artifact the test has been updated with another example of an unsigned one. --- Library/Homebrew/test/cask/audit_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/cask/audit_spec.rb b/Library/Homebrew/test/cask/audit_spec.rb index e71514440c..150ca8258c 100644 --- a/Library/Homebrew/test/cask/audit_spec.rb +++ b/Library/Homebrew/test/cask/audit_spec.rb @@ -483,7 +483,7 @@ describe Cask::Audit, :cask do cask 'signing-cask-test' do version '1.0' url "https://brew.sh/index.html" - binary 'Audit.app' + artifact "example.pdf", target: "/Library/Application Support/example" end RUBY end