Skip to content

Commit

Permalink
Fix image naming mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraporta committed Dec 12, 2023
1 parent 1192ef1 commit 1004279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_regression/test_derotation_by_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test_rotation_by_line(image_stack, n_lines, n_total_lines, len_stack):
for i, image in enumerate(rotated_images):
target_image = Image.open(
"tests/test_regression/images/"
+ f"{kind}_rotation/rotated_lenna_{i + 1}.png"
+ f"{kind}_rotation/rotated_dog_{i + 1}.png"
)
target_image = np.array(target_image.convert("L"))
assert np.allclose(
Expand Down

0 comments on commit 1004279

Please sign in to comment.