@@ -120,23 +120,23 @@ def test_get_query_url(self, m):
120120 self .assertEqual (
121121 self .shopify .get_query_url (None , None , "orders" , True ),
122122 f"https://{ SUBDOMAIN } .myshopify.com/admin/api/{ API_VERSION } /orders/"
123- + "count.json?limit=250&status=any" ,
123+ "count.json?limit=250&status=any" ,
124124 )
125125 self .assertEqual (
126126 self .shopify .get_query_url ("2020-10-20" , None , "orders" , True ),
127127 f"https://{ SUBDOMAIN } .myshopify.com/admin/api/{ API_VERSION } /orders/"
128- + "count.json?limit=250&status=any&created_at_min=2020-10-20T00:00:00&"
129- + "created_at_max=2020-10-21T00:00:00" ,
128+ "count.json?limit=250&status=any&created_at_min=2020-10-20T00:00:00&"
129+ "created_at_max=2020-10-21T00:00:00" ,
130130 )
131131 self .assertEqual (
132132 self .shopify .get_query_url (None , 2 , "orders" , True ),
133133 f"https://{ SUBDOMAIN } .myshopify.com/admin/api/{ API_VERSION } /orders/"
134- + "count.json?limit=250&status=any&since_id=2" ,
134+ "count.json?limit=250&status=any&since_id=2" ,
135135 )
136136 self .assertEqual (
137137 self .shopify .get_query_url (None , None , "orders" , False ),
138138 f"https://{ SUBDOMAIN } .myshopify.com/admin/api/{ API_VERSION } /orders.json?"
139- + "limit=250&status=any" ,
139+ "limit=250&status=any" ,
140140 )
141141
142142 @requests_mock .Mocker ()
0 commit comments