Skip to content

Commit

Permalink
Muse Dash: Fix Rare Test Failure (ArchipelagoMW#1920)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeamonHunter authored Jul 2, 2023
1 parent 9b15278 commit 4a60d8a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions worlds/musedash/test/TestPlandoSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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"

0 comments on commit 4a60d8a

Please sign in to comment.