Skip to content

Commit f4df263

Browse files
committed
Restore line ordering in test_texture.py to reduce diff noise
1 parent cabf9f0 commit f4df263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/texture/test_texture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ def test_create():
1010
assert texture.height == 10
1111
assert texture.file_path is None
1212
assert texture.crop_values is None
13-
assert texture.cache_name == f"{texture.image_data.hash}|{texture._vertex_order}|{texture.hit_box_algorithm.cache_name}|"
1413
assert texture.image_data.hash == "7a12e561363385e9dfeeab326368731c030ed4b374e7f5897ac819159d2884c5"
14+
assert texture.cache_name == f"{texture.image_data.hash}|{texture._vertex_order}|{texture.hit_box_algorithm.cache_name}|"
1515

1616
with pytest.raises(TypeError):
1717
_ = arcade.Texture("not valid image data")

0 commit comments

Comments
 (0)