(trajectory)
| 875 | assert is_proportionally_similar(new_image, ref_image), "The concatenated image is not proportionally similar to the reference image." |
| 876 | |
| 877 | def test_task_84(trajectory): |
| 878 | image_path ="./output/84.png" |
| 879 | ref_path = "./data/84.jpeg" |
| 880 | assert os.path.exists(image_path) |
| 881 | with Image.open(image_path) as img: |
| 882 | #print("In") |
| 883 | width, height = img.size |
| 884 | #print("AAA",width, height) |
| 885 | assert width==height |
| 886 | |
| 887 | |
| 888 |
nothing calls this directly
no outgoing calls
no test coverage detected