From d1b7ae5a9036d75ce4a73219255d92f929c44f5a Mon Sep 17 00:00:00 2001 From: Lai-YT <381xvmvbib@gmail.com> Date: Thu, 12 Jan 2023 15:22:32 +0000 Subject: [PATCH] Rename test classes with convention Broken because of copy-pasting mistake. Convention: The name of its corresponding unit test class + "WithMariaDB" --- backend/tests/integration_tests/test_item.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/tests/integration_tests/test_item.py b/backend/tests/integration_tests/test_item.py index 2a9d328e..2daeb241 100644 --- a/backend/tests/integration_tests/test_item.py +++ b/backend/tests/integration_tests/test_item.py @@ -19,11 +19,11 @@ class TestGetItemsByIdRouteWithMariaDB(TestGetItemsByIdRoute): pass -class TestGetItemsCountByIdRouteWithTestGetItemsRoute(TestGetItemsCountByIdRoute): +class TestGetItemsCountByIdRouteWithMariaDB(TestGetItemsCountByIdRoute): pass -class TestGetItemsRouteTestGetItemsRoute(TestGetItemsRoute): +class TestGetItemsRouteWithMariaDB(TestGetItemsRoute): pass