diff --git a/Library/Homebrew/test/utils/github_spec.rb b/Library/Homebrew/test/utils/github_spec.rb index fbc81e11df..f695c34106 100644 --- a/Library/Homebrew/test/utils/github_spec.rb +++ b/Library/Homebrew/test/utils/github_spec.rb @@ -77,16 +77,16 @@ describe GitHub do it "fails to find artifacts that don't exist" do expect { described_class.get_artifact_url( - described_class.get_workflow_run("Homebrew", "homebrew-core", 51971, artifact_name: "false_bottles"), + described_class.get_workflow_run("Homebrew", "homebrew-core", 79751, artifact_name: "false_bottles"), ) }.to raise_error(/No artifact .+ was found/) end it "gets an artifact link" do url = described_class.get_artifact_url( - described_class.get_workflow_run("Homebrew", "homebrew-core", 51971, artifact_name: "bottles"), + described_class.get_workflow_run("Homebrew", "homebrew-core", 79751, artifact_name: "bottles"), ) - expect(url).to eq("https://api.github.com/repos/Homebrew/homebrew-core/actions/artifacts/3557392/zip") + expect(url).to eq("https://api.github.com/repos/Homebrew/homebrew-core/actions/artifacts/69422207/zip") end end