@@ -50,7 +50,7 @@ func TestRetrySendRequest(t *testing.T) {
50
50
}{
51
51
{
52
52
name : "correct configs, gin, plain text" ,
53
- baseUrl : "http://ginserver " ,
53
+ baseUrl : "http://localhost " ,
54
54
endpoint : "/datetime" ,
55
55
port : "8083" ,
56
56
contentType : "text/plain" ,
@@ -59,7 +59,7 @@ func TestRetrySendRequest(t *testing.T) {
59
59
},
60
60
{
61
61
name : "correct configs, gin, json" ,
62
- baseUrl : "http://ginserver " ,
62
+ baseUrl : "http://localhost " ,
63
63
endpoint : "/datetime" ,
64
64
port : "8080" ,
65
65
contentType : "application/json" ,
@@ -68,7 +68,7 @@ func TestRetrySendRequest(t *testing.T) {
68
68
},
69
69
{
70
70
name : "correct configs, http, plain text" ,
71
- baseUrl : "http://httpserver " ,
71
+ baseUrl : "http://localhost " ,
72
72
endpoint : "/datetime" ,
73
73
port : "8080" ,
74
74
contentType : "text/plain" ,
@@ -77,7 +77,7 @@ func TestRetrySendRequest(t *testing.T) {
77
77
},
78
78
{
79
79
name : "correct configs, http, json" ,
80
- baseUrl : "http://httpserver " ,
80
+ baseUrl : "http://localhost " ,
81
81
endpoint : "/datetime" ,
82
82
port : "8083" ,
83
83
contentType : "application/json" ,
@@ -86,7 +86,7 @@ func TestRetrySendRequest(t *testing.T) {
86
86
},
87
87
{
88
88
name : "unsupported content type" ,
89
- baseUrl : "http://ginserver " ,
89
+ baseUrl : "http://localhost " ,
90
90
endpoint : "/datetime" ,
91
91
port : "8083" ,
92
92
contentType : "text/javascript; charset=utf-8" ,
0 commit comments