(trajectory)
| 769 | assert "如懿" in final_answer |
| 770 | |
| 771 | def test_task_78(trajectory): |
| 772 | image_path="./output/78.png" |
| 773 | # 检查文件是否存在 |
| 774 | #print("Check",os.path.exists(image_path)) |
| 775 | assert os.path.exists(image_path) |
| 776 | with Image.open(image_path) as img: |
| 777 | #print("In") |
| 778 | width, height = img.size |
| 779 | #print("AAA",width, height) |
| 780 | assert width==224 |
| 781 | assert height==224 |
| 782 | |
| 783 | def test_task_79(trajectory): |
| 784 | image_path="./output/79.png" |
nothing calls this directly
no outgoing calls
no test coverage detected