@@ -71,13 +71,13 @@ def test_token_retrieved_once_per_auth_instance(sample_post_response_data, sampl
71
71
# bind post statement to submit query
72
72
httpretty .register_uri (
73
73
method = httpretty .POST ,
74
- uri = f"{ SERVER_ADDRESS } :8080 { constants .URL_STATEMENT_PATH } " ,
74
+ uri = f"{ SERVER_ADDRESS } { constants .URL_STATEMENT_PATH } " ,
75
75
body = post_statement_callback )
76
76
77
77
# bind get statement for result retrieval
78
78
httpretty .register_uri (
79
79
method = httpretty .GET ,
80
- uri = f"{ SERVER_ADDRESS } :8080 { constants .URL_STATEMENT_PATH } /20210817_140827_00000_arvdv/1" ,
80
+ uri = f"{ SERVER_ADDRESS } { constants .URL_STATEMENT_PATH } /20210817_140827_00000_arvdv/1" ,
81
81
body = get_statement_callback )
82
82
83
83
# bind get token
@@ -136,13 +136,13 @@ def test_token_retrieved_once_when_authentication_instance_is_shared(sample_post
136
136
# bind post statement to submit query
137
137
httpretty .register_uri (
138
138
method = httpretty .POST ,
139
- uri = f"{ SERVER_ADDRESS } :8080 { constants .URL_STATEMENT_PATH } " ,
139
+ uri = f"{ SERVER_ADDRESS } { constants .URL_STATEMENT_PATH } " ,
140
140
body = post_statement_callback )
141
141
142
142
# bind get statement for result retrieval
143
143
httpretty .register_uri (
144
144
method = httpretty .GET ,
145
- uri = f"{ SERVER_ADDRESS } :8080 { constants .URL_STATEMENT_PATH } /20210817_140827_00000_arvdv/1" ,
145
+ uri = f"{ SERVER_ADDRESS } { constants .URL_STATEMENT_PATH } /20210817_140827_00000_arvdv/1" ,
146
146
body = get_statement_callback )
147
147
148
148
# bind get token
@@ -201,13 +201,13 @@ def test_token_retrieved_once_when_multithreaded(sample_post_response_data, samp
201
201
# bind post statement to submit query
202
202
httpretty .register_uri (
203
203
method = httpretty .POST ,
204
- uri = f"{ SERVER_ADDRESS } :8080 { constants .URL_STATEMENT_PATH } " ,
204
+ uri = f"{ SERVER_ADDRESS } { constants .URL_STATEMENT_PATH } " ,
205
205
body = post_statement_callback )
206
206
207
207
# bind get statement for result retrieval
208
208
httpretty .register_uri (
209
209
method = httpretty .GET ,
210
- uri = f"{ SERVER_ADDRESS } :8080 { constants .URL_STATEMENT_PATH } /20210817_140827_00000_arvdv/1" ,
210
+ uri = f"{ SERVER_ADDRESS } { constants .URL_STATEMENT_PATH } /20210817_140827_00000_arvdv/1" ,
211
211
body = get_statement_callback )
212
212
213
213
# bind get token
0 commit comments