(hasher)
| 122 | |
| 123 | |
| 124 | def test_encode_image_valerror_wrong_input_array(hasher): |
| 125 | pil_im = Image.open(PATH_SINGLE_IMAGE) |
| 126 | with pytest.raises(ValueError): |
| 127 | hasher.encode_image(image_array=pil_im) |
| 128 | |
| 129 | |
| 130 | def test_encode_image_wrong_dim_input_array(hasher, mocker): |
nothing calls this directly
no test coverage detected