diff --git a/tests/test_myanimelist.py b/tests/test_myanimelist.py
index 566825c..0f026ce 100644
--- a/tests/test_myanimelist.py
+++ b/tests/test_myanimelist.py
@@ -7,7 +7,7 @@ from personal_data.fetchers.myanimelist import parse_name
     'input_str, expected_group1, expected_group2',
     [
         ('"Soundscape"', 'Soundscape', None),
-        ('"Soundscape (サウンドスケープ)"', 'Soundscape', 'サウンドスケーブ'),
+        ('"Soundscape (サウンドスケープ)"', 'Soundscape', 'サウンドスケープ'),
         ('1: "Soundscape"', 'Soundscape', None),
         ('2: "Soundscape (サウンドスケープ)"', 'Soundscape', 'サウンドスケープ'),
     ],