diff options
author | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-11-23 19:30:33 -0200 |
---|---|---|
committer | Jefferson Stachelski <jstachel@thoughtworks.com> | 2015-11-24 15:37:39 -0200 |
commit | 005eceda8ca1185514aa19182fb179eecca735e2 (patch) | |
tree | a066ae017a1ec415e54aa69a6a6e636fd96d9cd9 /service/test/integration | |
parent | 2c477f6045bd840d5794d6caff001ad8bdd8b760 (diff) |
Issue #494 - Bruno/Jeff Fixed the encoding tests
Diffstat (limited to 'service/test/integration')
-rw-r--r-- | service/test/integration/test_leap_mailstore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/integration/test_leap_mailstore.py b/service/test/integration/test_leap_mailstore.py index af5ba8a0..9e63c693 100644 --- a/service/test/integration/test_leap_mailstore.py +++ b/service/test/integration/test_leap_mailstore.py @@ -188,7 +188,7 @@ class LeapMailStoreTest(SoledadTestBase): replying = mail.as_dict()['replying'] self.assertEqual(replying['single'], 'me@pixelated.org') - self.assertEqual(replying['all']['to-field'], [u'addr1@pixelated.org', u'me@pixelated.org']) + self.assertEqual(replying['all']['to-field'], [u'addr1@pixelated.org']) self.assertEqual(replying['all']['cc-field'], []) @defer.inlineCallbacks |