Skip to content

Commit 775c973

Browse files
fix: edit test urls
1 parent e61a479 commit 775c973

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pkg/client_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func TestRetrySendRequest(t *testing.T) {
5050
}{
5151
{
5252
name: "correct configs, gin, plain text",
53-
baseUrl: "http://ginserver",
53+
baseUrl: "http://localhost",
5454
endpoint: "/datetime",
5555
port: "8083",
5656
contentType: "text/plain",
@@ -59,7 +59,7 @@ func TestRetrySendRequest(t *testing.T) {
5959
},
6060
{
6161
name: "correct configs, gin, json",
62-
baseUrl: "http://ginserver",
62+
baseUrl: "http://localhost",
6363
endpoint: "/datetime",
6464
port: "8080",
6565
contentType: "application/json",
@@ -68,7 +68,7 @@ func TestRetrySendRequest(t *testing.T) {
6868
},
6969
{
7070
name: "correct configs, http, plain text",
71-
baseUrl: "http://httpserver",
71+
baseUrl: "http://localhost",
7272
endpoint: "/datetime",
7373
port: "8080",
7474
contentType: "text/plain",
@@ -77,7 +77,7 @@ func TestRetrySendRequest(t *testing.T) {
7777
},
7878
{
7979
name: "correct configs, http, json",
80-
baseUrl: "http://httpserver",
80+
baseUrl: "http://localhost",
8181
endpoint: "/datetime",
8282
port: "8083",
8383
contentType: "application/json",
@@ -86,7 +86,7 @@ func TestRetrySendRequest(t *testing.T) {
8686
},
8787
{
8888
name: "unsupported content type",
89-
baseUrl: "http://ginserver",
89+
baseUrl: "http://localhost",
9090
endpoint: "/datetime",
9191
port: "8083",
9292
contentType: "text/javascript; charset=utf-8",

0 commit comments

Comments
 (0)