Skip to content
Snippets Groups Projects
Commit 6feee4e6 authored by Will McCutchen's avatar Will McCutchen
Browse files

Fix broken tests

parent 71a6a044
No related branches found
No related tags found
No related merge requests found
......@@ -1121,10 +1121,11 @@ func TestDigestAuth(t *testing.T) {
status int
}{
{"/digest-auth", http.StatusNotFound},
{"/digest-auth/qop/user/pass", http.StatusNotImplemented},
{"/digest-auth/user", http.StatusNotImplemented},
{"/digest-auth/user/pass", http.StatusNotImplemented},
{"/digest-auth/qop/user/pass/foo", http.StatusNotImplemented},
{"/digest-auth/user", http.StatusNotFound},
{"/digest-auth/user/pass", http.StatusNotFound},
{"/digest-auth/auth/user/pass", http.StatusUnauthorized},
{"/digest-auth/auth/user/pass/MD5", http.StatusUnauthorized},
}
for _, test := range tests {
t.Run("ok"+test.url, func(t *testing.T) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment