diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-09-15 14:41:10 -0300 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-09-15 14:41:10 -0300 |
commit | 3f158be0b30fa16dbc3ee7f60bd593e89bea1fb8 (patch) | |
tree | 432b62eefd02c2689bf8b3e31176804b3f91c294 | |
parent | 0a0727e74f0ba54516d062df1a34c3375459da5f (diff) |
Fixing unit tests
-rw-r--r-- | service/test/user_agent_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/service/test/user_agent_test.py b/service/test/user_agent_test.py index 28fb4b69..8661a59a 100644 --- a/service/test/user_agent_test.py +++ b/service/test/user_agent_test.py @@ -26,6 +26,8 @@ class UserAgentTest(unittest.TestCase): def setUp(self): self.app = pixelated.user_agent.app.test_client() self.mail_service = mock() + + pixelated.user_agent.DISABLED_FEATURES = [] pixelated.user_agent.mail_service = self.mail_service def test_create_or_send_draft_should_create_draft_if_mail_has_no_ident(self): |