@@ -53,7 +53,6 @@ def test_historical_prices_v3_datetime_happy(self):
5353 responses .add (
5454 responses .GET ,
5555 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP" ,
56- match_querystring = False ,
5756 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
5857 json = response_body ,
5958 status = 200 ,
@@ -95,7 +94,6 @@ def test_historical_prices_v3_num_points_happy(self):
9594 responses .add (
9695 responses .GET ,
9796 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP" ,
98- match_querystring = False ,
9997 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
10098 json = response_body ,
10199 status = 200 ,
@@ -126,7 +124,6 @@ def test_historical_prices_v3_num_points_bad_numpoints(self):
126124 responses .add (
127125 responses .GET ,
128126 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP" ,
129- match_querystring = False ,
130127 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
131128 json = {
132129 "errorCode" : "Unable to convert value=3.14159 to type= Integer int"
@@ -151,7 +148,6 @@ def test_historical_prices_v3_num_points_bad_resolution(self):
151148 responses .add (
152149 responses .GET ,
153150 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP" ,
154- match_querystring = False ,
155151 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
156152 json = response_body ,
157153 status = 200 ,
@@ -235,7 +231,6 @@ def test_historical_prices_by_epic_and_date_range_v1_happy(self):
235231 responses .add (
236232 responses .GET ,
237233 re .compile ("https://demo-api.ig.com/gateway/deal/prices/.+" ),
238- match_querystring = False ,
239234 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
240235 json = response_body ,
241236 status = 200 ,
@@ -273,7 +268,6 @@ def test_historical_prices_by_epic_and_date_range_happy(self):
273268 responses .add (
274269 responses .GET ,
275270 re .compile ("https://demo-api.ig.com/gateway/deal/prices/.+" ),
276- match_querystring = False ,
277271 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
278272 json = response_body ,
279273 status = 200 ,
@@ -376,7 +370,6 @@ def test_historical_prices_by_epic_and_num_points_happy(self):
376370 responses .add (
377371 responses .GET ,
378372 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP/DAY/10" ,
379- match_querystring = False ,
380373 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
381374 json = response_body ,
382375 status = 200 ,
@@ -426,7 +419,6 @@ def test_historical_prices_by_epic_and_num_points_bad_numpoints(self):
426419 responses .add (
427420 responses .GET ,
428421 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP" ,
429- match_querystring = False ,
430422 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
431423 json = {
432424 "errorCode" : "Unable to convert value=3.14159 to type= Integer int"
@@ -448,7 +440,6 @@ def test_historical_prices_by_epic_and_num_points_bad_resolution(self):
448440 responses .add (
449441 responses .GET ,
450442 "https://demo-api.ig.com/gateway/deal/prices/MT.D.GC.Month2.IP" ,
451- match_querystring = False ,
452443 headers = {"CST" : "abc123" , "X-SECURITY-TOKEN" : "xyz987" },
453444 json = {},
454445 status = 200 ,
0 commit comments