Add whitespace around arithmetic operator so flake8 test passes

This commit is contained in:
Abdurrahmaan Iqbal 2019-07-09 09:41:21 +01:00
parent 7fd9241f25
commit 82c6cdc990

View File

@ -388,8 +388,8 @@ class TableTestCase(unittest.TestCase):
tbl.upsert_many([dict(age=10), dict(weight=W)], 'id') tbl.upsert_many([dict(age=10), dict(weight=W)], 'id')
assert tbl.find_one(id=1)['age'] == 10 assert tbl.find_one(id=1)['age'] == 10
tbl.upsert_many([dict(id=1, age=70), dict(id=2, weight=W/2)], 'id') tbl.upsert_many([dict(id=1, age=70), dict(id=2, weight=W / 2)], 'id')
assert tbl.find_one(id=2)['weight'] == W/2 assert tbl.find_one(id=2)['weight'] == W / 2
def test_drop_operations(self): def test_drop_operations(self):
assert self.tbl._table is not None, \ assert self.tbl._table is not None, \