From 9147744ff78124546d0fe3543e6d90f081c7d928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 29 Jul 2023 12:34:12 +0800 Subject: [PATCH] Renamed the test_init test to test_init_db in the ConsoleCommandTestCase test case. --- tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index a2ffaec..25d945b 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -44,7 +44,7 @@ class ConsoleCommandTestCase(unittest.TestCase): self.__app: Flask = create_test_app() """The Flask application.""" - def test_init(self) -> None: + def test_init_db(self) -> None: """Tests the "accounting-init-db" console command. :return: None.