Skip to content

Commit

Permalink
fix lint issue from last merged pr
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodingenthusiast committed Nov 10, 2023
1 parent 123d05e commit 691c74d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions manager/runner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ package manager
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
Expand Down Expand Up @@ -560,7 +559,7 @@ func TestRunner_Start(t *testing.T) {
t.Run("notify", func(t *testing.T) {
t.Parallel()

out, err := ioutil.TempFile("", "")
out, err := os.CreateTemp("", "")
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 691c74d

Please sign in to comment.