Skip to content

Commit 75049e3

Browse files
committed
Fix more tests
1 parent 4897117 commit 75049e3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/test_data/world_tests/both/expected.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
),
1515
world.WorldMap(
1616
size=common_types.Size(160, 160),
17-
coordinates=common_types.OrderedPair(0.0, 0.0),
18-
map_file=Path(Path(__file__).parent / "map_p0-n0.json")
17+
coordinates=common_types.OrderedPair(0.0, 160.0),
18+
map_file=Path(Path(__file__).parent / "map_p0-n1.json")
1919
.absolute()
2020
.resolve(),
2121
),
2222
world.WorldMap(
2323
size=common_types.Size(160, 160),
24-
coordinates=common_types.OrderedPair(0.0, 160.0),
25-
map_file=Path(Path(__file__).parent / "map_p0-n1.json")
24+
coordinates=common_types.OrderedPair(0.0, 0.0),
25+
map_file=Path(Path(__file__).parent / "map_p0-n0.json")
2626
.absolute()
2727
.resolve(),
2828
),

tests/test_data/world_tests/pattern_matched/expected.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
maps=[
88
world.WorldMap(
99
size=common_types.Size(160, 160),
10-
coordinates=common_types.OrderedPair(0.0, 0.0),
11-
map_file=Path(Path(__file__).parent / "map_p0-n0.json")
10+
coordinates=common_types.OrderedPair(0.0, 160.0),
11+
map_file=Path(Path(__file__).parent / "map_p0-n1.json")
1212
.absolute()
1313
.resolve(),
1414
),
1515
world.WorldMap(
1616
size=common_types.Size(160, 160),
17-
coordinates=common_types.OrderedPair(0.0, 160.0),
18-
map_file=Path(Path(__file__).parent / "map_p0-n1.json")
17+
coordinates=common_types.OrderedPair(0.0, 0.0),
18+
map_file=Path(Path(__file__).parent / "map_p0-n0.json")
1919
.absolute()
2020
.resolve(),
2121
),

0 commit comments

Comments
 (0)