Mercurial > libervia-backend
diff src/test/helpers.py @ 1624:7e749e8eefd0
core: fixed launchAction:
- getClient now raise a NotFound error if client is not available
- errors ConnectedProfileError, NotConnectedProfileError anf ProfileKeyUnknownError renamed for consistency (all profile error must prefixed by Profile)
- launchAction fixed, the case where client is not available is handled
- kept actions are actuall1y removed on launchAction
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 18 Nov 2015 11:06:24 +0100 |
parents | 979210da778a |
children | d17772b0fe22 |
line wrap: on
line diff
--- a/src/test/helpers.py Tue Nov 17 21:29:03 2015 +0100 +++ b/src/test/helpers.py Wed Nov 18 11:06:24 2015 +0100 @@ -124,7 +124,7 @@ @return: client or None if it doesn't exist""" profile = self.memory.getProfileName(profile_key) if not profile: - raise exceptions.ProfileKeyUnknownError + raise exceptions.ProfileKeyUnknown if profile not in self.profiles: self.profiles[profile] = FakeClient(self, profile) return self.profiles[profile]