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)