diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-12-03 18:06:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 00:06:11 +0100 |
commit | ee4ebe472759e91d511f3f151311f3a54e68051b (patch) | |
tree | 450f60e28d7fe43970a7e6a23597d1d1814dc5b9 /test/TestDoors.py | |
parent | e5d14e2e19772bb58905770f663c974592e43f32 (diff) | |
download | lingo-apworld-ee4ebe472759e91d511f3f151311f3a54e68051b.tar.gz lingo-apworld-ee4ebe472759e91d511f3f151311f3a54e68051b.tar.bz2 lingo-apworld-ee4ebe472759e91d511f3f151311f3a54e68051b.zip |
Lingo: Default color shuffle to on (#2548)
* Lingo: Default color shuffle on * Raise error if no progression in multiworld
Diffstat (limited to 'test/TestDoors.py')
-rw-r--r-- | test/TestDoors.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/TestDoors.py b/test/TestDoors.py index 5dc989a..f496c5f 100644 --- a/test/TestDoors.py +++ b/test/TestDoors.py | |||
@@ -3,7 +3,8 @@ from . import LingoTestBase | |||
3 | 3 | ||
4 | class TestRequiredRoomLogic(LingoTestBase): | 4 | class TestRequiredRoomLogic(LingoTestBase): |
5 | options = { | 5 | options = { |
6 | "shuffle_doors": "complex" | 6 | "shuffle_doors": "complex", |
7 | "shuffle_colors": "false", | ||
7 | } | 8 | } |
8 | 9 | ||
9 | def test_pilgrim_first(self) -> None: | 10 | def test_pilgrim_first(self) -> None: |
@@ -49,7 +50,8 @@ class TestRequiredRoomLogic(LingoTestBase): | |||
49 | 50 | ||
50 | class TestRequiredDoorLogic(LingoTestBase): | 51 | class TestRequiredDoorLogic(LingoTestBase): |
51 | options = { | 52 | options = { |
52 | "shuffle_doors": "complex" | 53 | "shuffle_doors": "complex", |
54 | "shuffle_colors": "false", | ||
53 | } | 55 | } |
54 | 56 | ||
55 | def test_through_rhyme(self) -> None: | 57 | def test_through_rhyme(self) -> None: |
@@ -76,7 +78,8 @@ class TestRequiredDoorLogic(LingoTestBase): | |||
76 | 78 | ||
77 | class TestSimpleDoors(LingoTestBase): | 79 | class TestSimpleDoors(LingoTestBase): |
78 | options = { | 80 | options = { |
79 | "shuffle_doors": "simple" | 81 | "shuffle_doors": "simple", |
82 | "shuffle_colors": "false", | ||
80 | } | 83 | } |
81 | 84 | ||
82 | def test_requirement(self): | 85 | def test_requirement(self): |