From ec20e8148632f4eb026e498431abc7d504359502 Mon Sep 17 00:00:00 2001 From: Andrew Sayre <6730289+andrewsayre@users.noreply.github.com> Date: Sat, 25 May 2024 16:33:15 -0500 Subject: [PATCH] Fix string formatting --- tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/__init__.py b/tests/__init__.py index 19b7859..2f4e0ff 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -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)