From 4a60d8a4c1b4231e74bf7c0449a0a565e14a53ec Mon Sep 17 00:00:00 2001 From: Justus Lind Date: Sun, 2 Jul 2023 17:48:17 +1000 Subject: [PATCH] Muse Dash: Fix Rare Test Failure (#1920) --- worlds/musedash/test/TestPlandoSettings.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/worlds/musedash/test/TestPlandoSettings.py b/worlds/musedash/test/TestPlandoSettings.py index af2bb5f0971f..a6bd8ad27351 100644 --- a/worlds/musedash/test/TestPlandoSettings.py +++ b/worlds/musedash/test/TestPlandoSettings.py @@ -19,7 +19,9 @@ def test_included_songs_didnt_grow_item_count(self) -> None: def test_included_songs_plando(self) -> None: muse_dash_world = self.multiworld.worlds[1] + songs = muse_dash_world.included_songs.copy() + songs.append(muse_dash_world.victory_song_name) - assert "Operation Blade" in muse_dash_world.included_songs, f"Logical songs is missing a plando song" - assert "Autumn Moods" in muse_dash_world.included_songs, f"Logical songs is missing a plando song" - assert "Fireflies" in muse_dash_world.included_songs, f"Logical songs is missing a plando song" \ No newline at end of file + assert "Operation Blade" in songs, "Logical songs is missing a plando song: Operation Blade" + assert "Autumn Moods" in songs, "Logical songs is missing a plando song: Autumn Moods" + assert "Fireflies" in songs, "Logical songs is missing a plando song: Fireflies" \ No newline at end of file