From 66f07534a611056214e4f8b02e0143944b816c39 Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Wed, 5 Aug 2015 16:43:19 -0300 Subject: [tests] Created a setup for the http target tests Created a setup for the http target tests Fixed two tests relying on http target that were outdated Fixed a call for an exception that doesn't exist, it won't break anymore if it gets to that exception --- client/src/leap/soledad/client/http_target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/src/leap/soledad') diff --git a/client/src/leap/soledad/client/http_target.py b/client/src/leap/soledad/client/http_target.py index f7f50af6..f5d8ef1c 100644 --- a/client/src/leap/soledad/client/http_target.py +++ b/client/src/leap/soledad/client/http_target.py @@ -534,7 +534,7 @@ class SoledadHTTPSyncTarget(SyncTarget): new_generation = metadata['new_generation'] new_transaction_id = metadata['new_transaction_id'] number_of_changes = metadata['number_of_changes'] - except (json.JSONDecodeError, KeyError): + except (ValueError, KeyError): raise errors.BrokenSyncStream # make sure we have replica_uid from fresh new dbs if self._ensure_callback and 'replica_uid' in metadata: -- cgit v1.2.3