Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
fix: change deprecated package
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Kibish committed Apr 10, 2023
1 parent 8e0e985 commit 6022cb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cleaner_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"io/ioutil"
"io"
"log"
"net/url"
"os"
Expand All @@ -13,7 +13,7 @@ import (
)

func TestMain(m *testing.M) {
log.SetOutput(ioutil.Discard)
log.SetOutput(io.Discard)
os.Exit(m.Run())
}

Expand Down

0 comments on commit 6022cb7

Please sign in to comment.