From 13d64dac3d83aaceaf8a3d87c2b79c3386499d7b Mon Sep 17 00:00:00 2001 From: Deko Date: Sat, 4 Mar 2023 11:11:50 +0100 Subject: [PATCH] Remove unnecessary f-string --- app/tests/test_discord_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tests/test_discord_client.py b/app/tests/test_discord_client.py index 4c11c6a..d7f1062 100644 --- a/app/tests/test_discord_client.py +++ b/app/tests/test_discord_client.py @@ -46,7 +46,7 @@ def test_send_information_to_discord(mock_loggers): embed: dict[str, Any] = json.loads(webhook_call.text)["embeds"][0] assert embed["title"] == "title" assert embed["timestamp"] == "never" - assert embed["url"] == f"https://www.twitch.tv/test" + assert embed["url"] == "https://www.twitch.tv/test" assert embed["author"]["name"] == "Test" assert embed["author"]["url"] == embed["url"] assert embed["author"]["icon_url"] == "profile_image.png"