Skip to content

Commit

Permalink
feat: fix incorrect imports
Browse files Browse the repository at this point in the history
  • Loading branch information
panteparak committed Oct 22, 2024
1 parent b10ab34 commit 536c849
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/test_db_heartbeat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from health_check.contrib.db_heartbeat import DatabaseHeartBeatCheck
from health_check.contrib.db_heartbeat.backends import DatabaseHeartBeatCheck
from health_check.exceptions import ServiceUnavailable


Expand All @@ -16,7 +16,3 @@ def test_check_status_unexpected_result(self):
health_check = DatabaseHeartBeatCheck()
with self.assertRaises(ServiceUnavailable):
health_check.check_status()


if __name__ == "__main__":
unittest.main()

0 comments on commit 536c849

Please sign in to comment.