Browse Source

all: update _test.go files for os.IsFoo changes

pull/3061/head
Damian Gryski 2 years ago
committed by Ron Evans
parent
commit
f12ddfe164
  1. 5
      compileopts/target_test.go
  2. 6
      src/testing/testing_test.go

5
compileopts/target_test.go

@ -1,7 +1,8 @@
package compileopts
import (
"os"
"errors"
"io/fs"
"reflect"
"testing"
)
@ -17,7 +18,7 @@ func TestLoadTarget(t *testing.T) {
t.Error("LoadTarget should have failed with non existing target")
}
if !os.IsNotExist(err) {
if !errors.Is(err, fs.ErrNotExist) {
t.Error("LoadTarget failed for wrong reason:", err)
}
}

6
src/testing/testing_test.go

@ -10,6 +10,8 @@
package testing_test
import (
"errors"
"io/fs"
"os"
"path/filepath"
"testing"
@ -42,7 +44,7 @@ func TestTempDirInCleanup(t *testing.T) {
if fi != nil {
t.Fatalf("Directory %q from user Cleanup still exists", dir)
}
if !os.IsNotExist(err) {
if !errors.Is(err, fs.ErrNotExist) {
t.Fatalf("Unexpected error: %v", err)
}
}
@ -85,7 +87,7 @@ func testTempDir(t *testing.T) {
select {
case dir := <-dirCh:
fi, err := os.Stat(dir)
if os.IsNotExist(err) {
if errors.Is(err, fs.ErrNotExist) {
// All good
return
}

Loading…
Cancel
Save