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):