diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-07-21 14:48:52 +0000 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-08-11 17:00:26 +0200 |
commit | ba1d6edfc144c0549e88392a8414a147a9f30931 (patch) | |
tree | 4a66870fb40352bb1dfbef4417761df1e2444605 /service/test/support/integration | |
parent | 9b564a2529326668a0752b3b103bffc145d94417 (diff) |
Fixed MarkAsReadUnreadTest#test_mark_single_as_read and underlying implementation.
Diffstat (limited to 'service/test/support/integration')
-rw-r--r-- | service/test/support/integration/app_test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/integration/app_test_client.py b/service/test/support/integration/app_test_client.py index e139d879..a76d4948 100644 --- a/service/test/support/integration/app_test_client.py +++ b/service/test/support/integration/app_test_client.py @@ -214,7 +214,7 @@ class AppTestClient(object): def mark_many_as_read(self, idents): res, req = self.post('/mails/read', json.dumps({'idents': idents})) - return req + return res def get_contacts(self, query): res, req = self.get('/contacts', get_args={'q': query}) |