fixed database unit test

This commit is contained in:
Lex Berezhny 2018-10-09 16:49:37 -04:00
parent 3ed03c267a
commit 6a97f96745

View file

@ -96,7 +96,7 @@ class TestQueryBuilder(unittest.TestCase):
)
self.assertEqual(
query("select * from foo", limit=20, offset=10),
("select * from foo OFFSET 10 LIMIT 20", {})
("select * from foo LIMIT 20 OFFSET 10", {})
)