Commit 465b6705 authored by Geoff Simmons's avatar Geoff Simmons

Fix a minor copy pasta error.

parent 71a69b25
......@@ -1074,8 +1074,8 @@ func TestErrors(t *testing.T) {
problem.Title, errPemsPattern.Title)
}
if problem.Detail != errPemsPattern.Detail {
t.Errorf("GET /v1/pems/foo problem title: got %s want %s",
problem.Detail, errPemsPattern.Title)
t.Errorf("GET /v1/pems/foo problem detail: got %s want %s",
problem.Detail, errPemsPattern.Detail)
}
if problem.Status != http.StatusNotFound {
t.Errorf("GET /v1/pems/foo problem status: got %d want %d",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment