Linting
This commit is contained in:
parent
3c5f87687d
commit
ed70faf8a9
1 changed files with 5 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue