From 9b459f015f5cc7cc8db92e1ba43625ed5729756f Mon Sep 17 00:00:00 2001 From: Ram Sevak Mishra Date: Wed, 11 Oct 2023 16:16:17 +0530 Subject: [PATCH] Add postgres database --- app/core/tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/tests/test_commands.py b/app/core/tests/test_commands.py index 232e170..392bf9f 100644 --- a/app/core/tests/test_commands.py +++ b/app/core/tests/test_commands.py @@ -13,7 +13,7 @@ from django.test import SimpleTestCase -@patch('core.management.commands.wait_for_db_command.check') +@patch('core.management.commands.wait_for_db.Command.check') class CommandTests(SimpleTestCase): """Test Command"""