summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
Diffstat (limited to 'service')
-rw-r--r--service/http/server_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/server_test.go b/service/http/server_test.go
index 33a50d72..35ee940c 100644
--- a/service/http/server_test.go
+++ b/service/http/server_test.go
@@ -178,7 +178,7 @@ func TestServer_JsonPayload_POST(t *testing.T) {
assert.NoError(t, st.rr.Start())
defer st.rr.Stop()
- hs := &http.Server{Addr: ":8080", Handler: st,}
+ hs := &http.Server{Addr: ":8090", Handler: st,}
defer hs.Shutdown(context.Background())
go func() { hs.ListenAndServe() }()