@@ -2227,25 +2227,25 @@ def test_whitelabel_domains__id__ips_post(self):
2227
2227
data = {
2228
2228
"ip" : "192.168.0.1"
2229
2229
}
2230
- id = "test_url_param"
2230
+ id_ = "test_url_param"
2231
2231
headers = {'X-Mock' : 200 }
2232
2232
response = self .sg .client .whitelabel .domains ._ (
2233
- id ).ips .post (request_body = data , request_headers = headers )
2233
+ id_ ).ips .post (request_body = data , request_headers = headers )
2234
2234
self .assertEqual (response .status_code , 200 )
2235
2235
2236
2236
def test_whitelabel_domains__id__ips__ip__delete (self ):
2237
- id = "test_url_param"
2237
+ id_ = "test_url_param"
2238
2238
ip = "test_url_param"
2239
2239
headers = {'X-Mock' : 200 }
2240
2240
response = self .sg .client .whitelabel .domains ._ (
2241
- id ).ips ._ (ip ).delete (request_headers = headers )
2241
+ id_ ).ips ._ (ip ).delete (request_headers = headers )
2242
2242
self .assertEqual (response .status_code , 200 )
2243
2243
2244
2244
def test_whitelabel_domains__id__validate_post (self ):
2245
- id = "test_url_param"
2245
+ id_ = "test_url_param"
2246
2246
headers = {'X-Mock' : 200 }
2247
2247
response = self .sg .client .whitelabel .domains ._ (
2248
- id ).validate .post (request_headers = headers )
2248
+ id_ ).validate .post (request_headers = headers )
2249
2249
self .assertEqual (response .status_code , 200 )
2250
2250
2251
2251
def test_whitelabel_ips_post (self ):
@@ -2267,24 +2267,24 @@ def test_whitelabel_ips_get(self):
2267
2267
self .assertEqual (response .status_code , 200 )
2268
2268
2269
2269
def test_whitelabel_ips__id__get (self ):
2270
- id = "test_url_param"
2270
+ id_ = "test_url_param"
2271
2271
headers = {'X-Mock' : 200 }
2272
2272
response = self .sg .client .whitelabel .ips ._ (
2273
- id ).get (request_headers = headers )
2273
+ id_ ).get (request_headers = headers )
2274
2274
self .assertEqual (response .status_code , 200 )
2275
2275
2276
2276
def test_whitelabel_ips__id__delete (self ):
2277
- id = "test_url_param"
2277
+ id_ = "test_url_param"
2278
2278
headers = {'X-Mock' : 204 }
2279
2279
response = self .sg .client .whitelabel .ips ._ (
2280
- id ).delete (request_headers = headers )
2280
+ id_ ).delete (request_headers = headers )
2281
2281
self .assertEqual (response .status_code , 204 )
2282
2282
2283
2283
def test_whitelabel_ips__id__validate_post (self ):
2284
- id = "test_url_param"
2284
+ id_ = "test_url_param"
2285
2285
headers = {'X-Mock' : 200 }
2286
2286
response = self .sg .client .whitelabel .ips ._ (
2287
- id ).validate .post (request_headers = headers )
2287
+ id_ ).validate .post (request_headers = headers )
2288
2288
self .assertEqual (response .status_code , 200 )
2289
2289
2290
2290
def test_whitelabel_links_post (self ):
@@ -2331,31 +2331,31 @@ def test_whitelabel_links__id__patch(self):
2331
2331
data = {
2332
2332
"default" : True
2333
2333
}
2334
- id = "test_url_param"
2334
+ id_ = "test_url_param"
2335
2335
headers = {'X-Mock' : 200 }
2336
- response = self .sg .client .whitelabel .links ._ (id ).patch (
2336
+ response = self .sg .client .whitelabel .links ._ (id_ ).patch (
2337
2337
request_body = data , request_headers = headers )
2338
2338
self .assertEqual (response .status_code , 200 )
2339
2339
2340
2340
def test_whitelabel_links__id__get (self ):
2341
- id = "test_url_param"
2341
+ id_ = "test_url_param"
2342
2342
headers = {'X-Mock' : 200 }
2343
2343
response = self .sg .client .whitelabel .links ._ (
2344
- id ).get (request_headers = headers )
2344
+ id_ ).get (request_headers = headers )
2345
2345
self .assertEqual (response .status_code , 200 )
2346
2346
2347
2347
def test_whitelabel_links__id__delete (self ):
2348
- id = "test_url_param"
2348
+ id_ = "test_url_param"
2349
2349
headers = {'X-Mock' : 204 }
2350
2350
response = self .sg .client .whitelabel .links ._ (
2351
- id ).delete (request_headers = headers )
2351
+ id_ ).delete (request_headers = headers )
2352
2352
self .assertEqual (response .status_code , 204 )
2353
2353
2354
2354
def test_whitelabel_links__id__validate_post (self ):
2355
- id = "test_url_param"
2355
+ id_ = "test_url_param"
2356
2356
headers = {'X-Mock' : 200 }
2357
2357
response = self .sg .client .whitelabel .links ._ (
2358
- id ).validate .post (request_headers = headers )
2358
+ id_ ).validate .post (request_headers = headers )
2359
2359
self .assertEqual (response .status_code , 200 )
2360
2360
2361
2361
def test_whitelabel_links__link_id__subuser_post (self ):
0 commit comments