From 107bf406bc69f7666470b439716a87ebd31bd3b1 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Thu, 4 Jun 2020 21:28:35 -0400 Subject: [PATCH] tests: updated expected variable in all expected.py files --- tests/test_data/tilesets/image/expected.py | 2 +- tests/test_data/tilesets/image_background_color/expected.py | 2 +- tests/test_data/tilesets/image_properties/expected.py | 2 +- tests/test_data/tilesets/image_transparent_color/expected.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_data/tilesets/image/expected.py b/tests/test_data/tilesets/image/expected.py index c43c909..95e8db7 100644 --- a/tests/test_data/tilesets/image/expected.py +++ b/tests/test_data/tilesets/image/expected.py @@ -2,7 +2,7 @@ from pathlib import Path from pytiled_parser import tileset -expected = tileset.TileSet( +EXPECTED = tileset.TileSet( columns=8, image=Path(r"..\/..\/maps\/images\/tmw_desert_spacing.png"), image_height=199, diff --git a/tests/test_data/tilesets/image_background_color/expected.py b/tests/test_data/tilesets/image_background_color/expected.py index 1387f15..bc940aa 100644 --- a/tests/test_data/tilesets/image_background_color/expected.py +++ b/tests/test_data/tilesets/image_background_color/expected.py @@ -3,7 +3,7 @@ from pathlib import Path from pytiled_parser import tileset from pytiled_parser.common_types import Color -expected = tileset.TileSet( +EXPECTED = tileset.TileSet( columns=8, image=Path(r"..\/..\/maps\/images\/tmw_desert_spacing.png"), image_height=199, diff --git a/tests/test_data/tilesets/image_properties/expected.py b/tests/test_data/tilesets/image_properties/expected.py index 8eb3bea..1109340 100644 --- a/tests/test_data/tilesets/image_properties/expected.py +++ b/tests/test_data/tilesets/image_properties/expected.py @@ -3,7 +3,7 @@ from pathlib import Path from pytiled_parser import tileset from pytiled_parser.common_types import Color -expected = tileset.TileSet( +EXPECTED = tileset.TileSet( columns=8, image=Path(r"..\/..\/maps\/images\/tmw_desert_spacing.png"), image_height=199, diff --git a/tests/test_data/tilesets/image_transparent_color/expected.py b/tests/test_data/tilesets/image_transparent_color/expected.py index cb0c9bb..a6f4ce7 100644 --- a/tests/test_data/tilesets/image_transparent_color/expected.py +++ b/tests/test_data/tilesets/image_transparent_color/expected.py @@ -3,7 +3,7 @@ from pathlib import Path from pytiled_parser import tileset from pytiled_parser.common_types import Color -expected = tileset.TileSet( +EXPECTED = tileset.TileSet( columns=8, image=Path(r"..\/..\/maps\/images\/tmw_desert_spacing.png"), image_height=199,