diff options
author | Kali Kaneko <kali@leap.se> | 2015-08-19 15:22:55 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-08-19 15:22:55 -0400 |
commit | ee9ab32cd3cbe6a4fa73401a45faff6a36d16acf (patch) | |
tree | 671c22cc44591eb3a072e7e49d884a43142a8278 /common/src/leap | |
parent | edf54f4a2c59990c91544614d6014a900a8e3af3 (diff) |
[style] pep8 cleanups
Diffstat (limited to 'common/src/leap')
-rw-r--r-- | common/src/leap/soledad/common/tests/test_sync_mutex.py | 6 |
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() |