aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/api_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/app/api_test.go')
-rw-r--r--dashboard/app/api_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/dashboard/app/api_test.go b/dashboard/app/api_test.go
index 4a872231e..6897848cf 100644
--- a/dashboard/app/api_test.go
+++ b/dashboard/app/api_test.go
@@ -17,7 +17,7 @@ func TestClientSecretOK(t *testing.T) {
},
}, "user", "secr1t", "")
if err != nil || got != "" {
- t.Errorf("Unexpected error %v %v", got, err)
+ t.Errorf("unexpected error %v %v", got, err)
}
}
@@ -28,7 +28,7 @@ func TestClientOauthOK(t *testing.T) {
},
}, "user", "", "OauthSubject:public")
if err != nil || got != "" {
- t.Errorf("Unexpected error %v %v", got, err)
+ t.Errorf("unexpected error %v %v", got, err)
}
}
@@ -39,7 +39,7 @@ func TestClientSecretFail(t *testing.T) {
},
}, "user", "wrong", "")
if err != ErrAccess || got != "" {
- t.Errorf("Unexpected error %v %v", got, err)
+ t.Errorf("unexpected error %v %v", got, err)
}
}
@@ -48,7 +48,7 @@ func TestClientSecretMissing(t *testing.T) {
Clients: map[string]string{},
}, "user", "ignored", "")
if err != ErrAccess || got != "" {
- t.Errorf("Unexpected error %v %v", got, err)
+ t.Errorf("unexpected error %v %v", got, err)
}
}
@@ -63,7 +63,7 @@ func TestClientNamespaceOK(t *testing.T) {
},
}, "user", "secr1t", "")
if err != nil || got != "ns1" {
- t.Errorf("Unexpected error %v %v", got, err)
+ t.Errorf("unexpected error %v %v", got, err)
}
}