Skip to content

Commit

Permalink
Merge pull request docker#291 from thaJeztah/test_nits
Browse files Browse the repository at this point in the history
credentials: fix minor nits in tests
  • Loading branch information
thaJeztah authored May 30, 2023
2 parents 83d38ea + c1c7dd7 commit c842499
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit c842499

Please sign in to comment.