Skip to content

Commit

Permalink
feat: rename test classes
Browse files Browse the repository at this point in the history
  • Loading branch information
pmareke committed Sep 24, 2024
1 parent fa05ade commit a4a2e77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/use_cases/test_health_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/use_cases/test_say_hello_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a4a2e77

Please sign in to comment.