mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-01 11:28:09 +00:00
Wifi 12468 (#833)
* Added 4 Security Services Rest API Tests cases Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> * Added test cases for security_profiles, Authenticator QR Code Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> * Added CRUD User and CRUD subuser test cases Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> * Removed print Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> * Added headers in PUT method Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> * Removed systemConfiguration API test case Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> * Added ow_sanity_lf marker only in sanity test cases Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com> --------- Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>
This commit is contained in:
@@ -99,7 +99,7 @@ class ConfigureController:
|
||||
resp = requests.post(uri, params=params, data=payload, headers=self.make_headers(), verify=False,
|
||||
timeout=120)
|
||||
elif method == "PUT":
|
||||
resp = requests.put(uri, params=params, data=payload, verify=False, timeout=120)
|
||||
resp = requests.put(uri, params=params, data=payload, headers=self.make_headers(), verify=False, timeout=120)
|
||||
elif method == "DELETE":
|
||||
resp = requests.delete(uri, headers=self.make_headers(), params=params, verify=False, timeout=120)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user