Skip to content

Commit

Permalink
Ensure KT tests are being run by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jan 8, 2020
1 parent 0c3037f commit e7f58e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions huey/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from huey.tests.test_consumer import *
from huey.tests.test_crontab import *
from huey.tests.test_immediate import *
from huey.tests.test_kt_huey import *
from huey.tests.test_priority import *
from huey.tests.test_registry import *
from huey.tests.test_serializer import *
Expand Down
2 changes: 1 addition & 1 deletion huey/tests/test_kt_huey.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ def test_expire_results(self):

self.assertTrue(s.delete_data(b'k2'))
self.assertFalse(s.delete_data(b'k2'))
self.assertEqual(s.result_items(), {b'k1': b'v1', b'k3': b'v3'})
self.assertEqual(s.result_items(), {'k1': b'v1', 'k3': b'v3'})
self.assertEqual(s.result_store_size(), 2)

0 comments on commit e7f58e0

Please sign in to comment.