We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cabf9f0 commit f4df263Copy full SHA for f4df263
tests/unit/texture/test_texture.py
@@ -10,8 +10,8 @@ def test_create():
10
assert texture.height == 10
11
assert texture.file_path is None
12
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}|"
14
assert texture.image_data.hash == "7a12e561363385e9dfeeab326368731c030ed4b374e7f5897ac819159d2884c5"
+ assert texture.cache_name == f"{texture.image_data.hash}|{texture._vertex_order}|{texture.hit_box_algorithm.cache_name}|"
15
16
with pytest.raises(TypeError):
17
_ = arcade.Texture("not valid image data")
0 commit comments