Skip to content

Commit

Permalink
fix: copy/paste/typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertRosca committed Aug 24, 2024
1 parent c2fbb1f commit 130ef80
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
async def test_create_client(client_repo: ClientRepository):
result = await services.create_client(
ScopedClientCreate(proposal_no=1234, stream="Test Stream", bot_name="Test Bot"),
_=await services.get_or_put_bot(
1234, bot_name="Test Bot", bot_email="email", bot_key="key"
),
)
assert isinstance(result, ScopedClient)

Expand All @@ -26,9 +23,6 @@ async def test_create_client(client_repo: ClientRepository):
async def test_create_client_no_bot(client_repo: ClientRepository):
result = await services.create_client(
ScopedClientCreate(proposal_no=1234, stream="Test Stream", bot_name="Test Bot"),
_=await services.get_or_put_bot(
1234, bot_name="Test Bot", bot_email="email", bot_key=None
),
)
assert isinstance(result, ScopedClient)

Expand Down

0 comments on commit 130ef80

Please sign in to comment.