forked from LBRYCommunity/lbry-sdk
fixed database unit test
This commit is contained in:
parent
3ed03c267a
commit
6a97f96745
1 changed files with 1 additions and 1 deletions
|
@ -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", {})
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue