summaryrefslogtreecommitdiffstats
path: root/qa/tasks/mgr/dashboard/test_auth.py
diff options
context:
space:
mode:
Diffstat (limited to 'qa/tasks/mgr/dashboard/test_auth.py')
-rw-r--r--qa/tasks/mgr/dashboard/test_auth.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/qa/tasks/mgr/dashboard/test_auth.py b/qa/tasks/mgr/dashboard/test_auth.py
index a2266229bef..2b9240b635e 100644
--- a/qa/tasks/mgr/dashboard/test_auth.py
+++ b/qa/tasks/mgr/dashboard/test_auth.py
@@ -152,7 +152,8 @@ class AuthTest(DashboardTestCase):
self._post("/api/auth/logout")
self.assertStatus(200)
self.assertJsonBody({
- "redirect_url": "#/login"
+ "redirect_url": "#/login",
+ "protocol": 'local'
})
self._get("/api/host", version='1.1')
self.assertStatus(401)
@@ -167,7 +168,8 @@ class AuthTest(DashboardTestCase):
self._post("/api/auth/logout", set_cookies=True)
self.assertStatus(200)
self.assertJsonBody({
- "redirect_url": "#/login"
+ "redirect_url": "#/login",
+ "protocol": 'local'
})
self._get("/api/host", set_cookies=True, version='1.1')
self.assertStatus(401)