summaryrefslogtreecommitdiff
path: root/service/test/integration
diff options
context:
space:
mode:
authorJefferson Stachelski <jstachel@thoughtworks.com>2015-11-23 19:30:33 -0200
committerJefferson Stachelski <jstachel@thoughtworks.com>2015-11-24 15:37:39 -0200
commit005eceda8ca1185514aa19182fb179eecca735e2 (patch)
treea066ae017a1ec415e54aa69a6a6e636fd96d9cd9 /service/test/integration
parent2c477f6045bd840d5794d6caff001ad8bdd8b760 (diff)
Issue #494 - Bruno/Jeff Fixed the encoding tests
Diffstat (limited to 'service/test/integration')
-rw-r--r--service/test/integration/test_leap_mailstore.py2
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