Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreythewang committed Oct 11, 2018
1 parent 456f74e commit a7afa95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/celery_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ def test_run_async_query(self):
"WHERE name='Admin' LIMIT 666", query.executed_sql)
self.assertEqual(sql_where, query.sql)
self.assertEqual(0, query.rows)
self.assertEqual(False, query.limit_used)
self.assertEqual(True, query.limit_used)
self.assertEqual(False, query.limit_reached)
self.assertEqual(True, query.select_as_cta)
self.assertEqual(True, query.select_as_cta_used)

Expand Down

0 comments on commit a7afa95

Please sign in to comment.