Skip to content

Commit

Permalink
Fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsayre committed May 25, 2024
1 parent 6f435b7 commit ec20e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def _handle_connection(
query = dict(parse_qsl(url_parts.query))

command = url_parts.hostname + url_parts.path
fixture_name = f"{url_parts.hostname}.{url_parts.path.lstrip("/")}"
fixture_name = f"{url_parts.hostname}.{url_parts.path.lstrip('/')}"

log.commands[command].append(result)

Expand Down

0 comments on commit ec20e81

Please sign in to comment.