From e87042f21153097ae0ef40dc001cb33a0c88a7ad Mon Sep 17 00:00:00 2001 From: fpeters <> Date: Sun, 22 Feb 2004 20:18:11 +0000 Subject: [PATCH] fixed logout in tests --- tests/GlasnostTestCase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/GlasnostTestCase.py b/tests/GlasnostTestCase.py index 5ce6caac..39e9e635 100644 --- a/tests/GlasnostTestCase.py +++ b/tests/GlasnostTestCase.py @@ -42,8 +42,8 @@ class OneUserTestCase(MinimalTestCase): context.setVar('userToken', userToken) def logout(self): - authenticationProxy = getProxyForServerRole('authentication') - authenticationProxy.delUserToken() + identitiesProxy = getProxyForServerRole('identities') + identitiesProxy.deleteUserToken() context.delVar('userToken') def setUp(self):