Skip to content

Commit

Permalink
fix: updated variable name to remove ambiguity
Browse files Browse the repository at this point in the history
  • Loading branch information
TechyDaniel committed Dec 12, 2023
1 parent 4f0dcd0 commit a1ebe9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/readyplayerme/meshops/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ def test_get_diffuse_image(gltf_file_with_diffuse: str | Path, load_local_image:
local_mesh = mops.read_mesh(gltf_file_with_diffuse)
extracted_image = img.get_diffuse_image(local_mesh)
local_image = Image.open(load_local_image)
local_image = np.array((local_image), dtype=np.uint8)
assert np.array_equal(extracted_image, local_image), "Not matching."
local_np_image = np.array((local_image), dtype=np.uint8)
assert np.array_equal(extracted_image, local_np_image), "Not matching."

0 comments on commit a1ebe9d

Please sign in to comment.