Replace uses of os.IsExist and os.IsNotExist with errors.Is.

The former don't properly unwrap errors.
This commit is contained in:
Juliusz Chroboczek
2024-04-14 13:33:52 +02:00
parent 68887f13d5
commit 3409f5a27f
10 changed files with 21 additions and 19 deletions
+2 -1
View File
@@ -2,6 +2,7 @@ package token
import (
"encoding/json"
"errors"
"io"
"os"
"path/filepath"
@@ -294,7 +295,7 @@ func TestTokenStorage(t *testing.T) {
}
_, err = os.Stat(s.filename)
if !os.IsNotExist(err) {
if !errors.Is(err, os.ErrNotExist) {
t.Errorf("existence check: %v", err)
}
}