From a4a2e771408f59508ec9df11984927cccb9509f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20L=C3=B3pez=20Mareque?= Date: Tue, 24 Sep 2024 14:25:45 +0200 Subject: [PATCH] feat: rename test classes --- tests/unit/use_cases/test_health_command.py | 2 +- tests/unit/use_cases/test_say_hello_command.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/use_cases/test_health_command.py b/tests/unit/use_cases/test_health_command.py index f3af196..c7682a9 100644 --- a/tests/unit/use_cases/test_health_command.py +++ b/tests/unit/use_cases/test_health_command.py @@ -2,7 +2,7 @@ from src.use_cases.health_command import HealthCommand, HealthCommandHandler -class TestHealthCommand: +class TestHealthCommandHandler: def test_execute(self) -> None: command = HealthCommand() handler = HealthCommandHandler() diff --git a/tests/unit/use_cases/test_say_hello_command.py b/tests/unit/use_cases/test_say_hello_command.py index c7f87b3..900808e 100644 --- a/tests/unit/use_cases/test_say_hello_command.py +++ b/tests/unit/use_cases/test_say_hello_command.py @@ -8,7 +8,7 @@ from src.use_cases.say_hello_command import SayHelloCommand, SayHelloCommandHandler -class TestSayHelloCommand: +class TestSayHelloCommandHandler: def test_execute(self) -> None: name = "John" command = SayHelloCommand(name)