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