From c702027a767559f206919ac642450a542501bd9a Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Sun, 16 Mar 2025 22:11:05 +0100 Subject: [PATCH] fix: Update expected values in test for correct parsing of names --- tests/test_myanimelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_myanimelist.py b/tests/test_myanimelist.py index 5d00af2..566825c 100644 --- a/tests/test_myanimelist.py +++ b/tests/test_myanimelist.py @@ -9,7 +9,7 @@ from personal_data.fetchers.myanimelist import parse_name ('"Soundscape"', 'Soundscape', None), ('"Soundscape (サウンドスケープ)"', 'Soundscape', 'サウンドスケーブ'), ('1: "Soundscape"', 'Soundscape', None), - ('2: "Soundscape (サウンドスケーブ)"', 'Soundscape', 'サウンドスケーブ'), + ('2: "Soundscape (サウンドスケープ)"', 'Soundscape', 'サウンドスケープ'), ], ) def test_parse_name(input_str, expected_group1, expected_group2):