summaryrefslogtreecommitdiff
path: root/common/src
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-08-19 15:22:55 -0400
committerKali Kaneko <kali@leap.se>2015-08-19 15:22:55 -0400
commitee9ab32cd3cbe6a4fa73401a45faff6a36d16acf (patch)
tree671c22cc44591eb3a072e7e49d884a43142a8278 /common/src
parentedf54f4a2c59990c91544614d6014a900a8e3af3 (diff)
[style] pep8 cleanups
Diffstat (limited to 'common/src')
-rw-r--r--common/src/leap/soledad/common/tests/test_sync_mutex.py6
1 files changed, 3 insertions, 3 deletions
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()