diff options
Diffstat (limited to 'service/http/handler_test.go')
-rw-r--r-- | service/http/handler_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/handler_test.go b/service/http/handler_test.go index 0e236df0..98379117 100644 --- a/service/http/handler_test.go +++ b/service/http/handler_test.go @@ -58,7 +58,7 @@ func TestServer_Echo(t *testing.T) { body, r, err := get("http://localhost:8077/?hello=world") assert.NoError(t, err) - assert.Equal(t, 200, r.StatusCode) + assert.Equal(t, 201, r.StatusCode) assert.Equal(t, "WORLD", body) } |