fixup: initialize ret

This commit is contained in:
Kumataro 2024-11-02 20:25:11 +09:00
parent 8487c697d4
commit 051607956b

View File

@ -175,7 +175,7 @@ TEST(Imgcodecs_JpegXL, encode_from_uncontinued_image)
vector<uint8_t> buff;
vector<int> param;
bool ret;
bool ret = false;
EXPECT_NO_THROW(ret = cv::imencode(".jxl", roi, buff, param));
EXPECT_TRUE(ret);
}