(trajectory)
| 793 | assert height==500 |
| 794 | |
| 795 | def test_task_80(trajectory): |
| 796 | print("[ERROR]This test has error!!!!!!") |
| 797 | image_path="./output/80.png" |
| 798 | ref_path="./data/80.jpeg" |
| 799 | assert os.path.exists(image_path) |
| 800 | image = Image.open(image_path) |
| 801 | ref_image = Image.open(ref_path) |
| 802 | rotated_image = image.rotate(270, expand=True) |
| 803 | assert are_two_images_same(rotated_image,ref_image) |
| 804 | |
| 805 | def test_task_81(trajectory): |
| 806 | #print("[ERROR]This test has error!!!!!!") |
nothing calls this directly
no test coverage detected