Skip to content

Commit e61a479

Browse files
fix: edit test urls
1 parent 7bb2149 commit e61a479

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
@@ -135,7 +135,7 @@ func TestSendRequest(t *testing.T) {
135135
}{
136136
{
137137
name: "correct configs, gin, plain text",
138-
baseUrl: "http://ginserver",
138+
baseUrl: "http://localhost",
139139
endpoint: "/datetime",
140140
port: "8083",
141141
contentType: "text/plain",
@@ -144,7 +144,7 @@ func TestSendRequest(t *testing.T) {
144144
},
145145
{
146146
name: "correct configs, gin, json",
147-
baseUrl: "http://ginserver",
147+
baseUrl: "http://localhost",
148148
endpoint: "/datetime",
149149
port: "8080",
150150
contentType: "application/json",
@@ -153,7 +153,7 @@ func TestSendRequest(t *testing.T) {
153153
},
154154
{
155155
name: "correct configs, http, plain text",
156-
baseUrl: "http://httpserver",
156+
baseUrl: "http://localhost",
157157
endpoint: "/datetime",
158158
port: "8080",
159159
contentType: "text/plain",
@@ -162,7 +162,7 @@ func TestSendRequest(t *testing.T) {
162162
},
163163
{
164164
name: "correct configs, http, json",
165-
baseUrl: "http://httpserver",
165+
baseUrl: "http://localhost",
166166
endpoint: "/datetime",
167167
port: "8083",
168168
contentType: "application/json",
@@ -171,7 +171,7 @@ func TestSendRequest(t *testing.T) {
171171
},
172172
{
173173
name: "unsupported content type",
174-
baseUrl: "http://ginserver",
174+
baseUrl: "http://localhost",
175175
endpoint: "/datetime",
176176
port: "8083",
177177
contentType: "text/javascript; charset=utf-8",

0 commit comments

Comments
 (0)