Skip to content

Commit

Permalink
thought this would print seed
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvris committed May 20, 2024
1 parent d5a0ef4 commit 2ca48f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions worlds/kdl3/test/test_shuffles.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ def test_problematic(self) -> None:
placed_names = set([item.name for item in placed])
self.assertEqual(len(placed), len(placed_names),
f"Duplicate animal placed in problematic locations:"
f" {[spawn.location for spawn in placed]}")
f" {[spawn.location for spawn in placed]}, "
f"Seed: {self.multiworld.seed}")


class TestAllShuffle(KDL3TestBase):
Expand Down Expand Up @@ -253,7 +254,8 @@ def test_problematic(self) -> None:
placed_names = set([item.name for item in placed])
self.assertEqual(len(placed), len(placed_names),
f"Duplicate animal placed in problematic locations:"
f" {[spawn.location for spawn in placed]}")
f" {[spawn.location for spawn in placed]}, "
f"Seed: {self.multiworld.seed}")

def test_cutter_and_burning_reachable(self) -> None:
rooms = self.multiworld.worlds[1].rooms
Expand Down

0 comments on commit 2ca48f2

Please sign in to comment.