Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

credentials: fix minor nits in tests #291

Merged
merged 1 commit into from
May 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions credentials/credentials_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func TestStoreMissingServerURL(t *testing.T) {

h := newMemoryStore()

if err := Store(h, in); IsCredentialsMissingServerURL(err) == false {
if err := Store(h, in); !IsCredentialsMissingServerURL(err) {
t.Error(err)
}
}
Expand All @@ -108,7 +108,7 @@ func TestStoreMissingUsername(t *testing.T) {

h := newMemoryStore()

if err := Store(h, in); IsCredentialsMissingUsername(err) == false {
if err := Store(h, in); !IsCredentialsMissingUsername(err) {
t.Error(err)
}
}
Expand Down Expand Up @@ -176,7 +176,7 @@ func TestGetMissingServerURL(t *testing.T) {
buf := strings.NewReader("")
w := new(bytes.Buffer)

if err := Get(h, buf, w); IsCredentialsMissingServerURL(err) == false {
if err := Get(h, buf, w); !IsCredentialsMissingServerURL(err) {
t.Error(err)
}
}
Expand Down Expand Up @@ -229,8 +229,8 @@ func TestEraseMissingServerURL(t *testing.T) {
}

buf := strings.NewReader("")
if err := Erase(h, buf); IsCredentialsMissingServerURL(err) == false {
t.Fatal(err)
if err := Erase(h, buf); !IsCredentialsMissingServerURL(err) {
t.Error(err)
}
}

Expand Down