This commit is contained in:
SnskArora 2025-06-02 20:45:19 +05:30
parent 3c5f87687d
commit ed70faf8a9
No known key found for this signature in database
GPG key ID: 6EC7FEA48093AB59

View file

@ -481,7 +481,11 @@ func TestSaveOutput(t *testing.T) {
minimumApprovals: 0,
}
os.Remove(testCase.env_github_output)
// os.Remove(testCase.env_github_output)
if err := os.Remove(testCase.env_github_output); err != nil && !os.IsNotExist(err) {
t.Fatalf("failed to remove file: %v", err)
}
actual, err := a.SetActionOutputs(nil)
if err != nil {