(trajectory)
| 887 | |
| 888 | |
| 889 | def test_task_85(trajectory): |
| 890 | image_path ="./output/85.png" |
| 891 | ref_path = "./data/85.jpeg" |
| 892 | assert os.path.exists(image_path) |
| 893 | with Image.open(image_path) as img: |
| 894 | #print("In") |
| 895 | width, height = img.size |
| 896 | #print("AAA",width, height) |
| 897 | assert width==300 |
| 898 | assert height==300 |
| 899 | |
| 900 | |
| 901 | def test_task_86(trajectory): |
nothing calls this directly
no outgoing calls
no test coverage detected