From ee9ab32cd3cbe6a4fa73401a45faff6a36d16acf Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Wed, 19 Aug 2015 15:22:55 -0400 Subject: [style] pep8 cleanups --- common/src/leap/soledad/common/tests/test_sync_mutex.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common/src/leap/soledad') diff --git a/common/src/leap/soledad/common/tests/test_sync_mutex.py b/common/src/leap/soledad/common/tests/test_sync_mutex.py index 207338e4..a904a940 100644 --- a/common/src/leap/soledad/common/tests/test_sync_mutex.py +++ b/common/src/leap/soledad/common/tests/test_sync_mutex.py @@ -121,9 +121,9 @@ class TestSyncMutex( sync_times.sort(key=lambda s: s['start']) self.assertTrue( - sync_times[0]['start'] < sync_times[0]['end'] - and sync_times[0]['end'] < sync_times[1]['start'] - and sync_times[1]['start'] < sync_times[1]['end']) + (sync_times[0]['start'] < sync_times[0]['end'] and + sync_times[0]['end'] < sync_times[1]['start'] and + sync_times[1]['start'] < sync_times[1]['end'])) db.delete_database() db.close() -- cgit v1.2.3