[DML EP] Add missing newline to image test logging (#15596)

This commit is contained in:
Patrice Vignola 2023-04-21 13:39:07 -07:00 committed by GitHub
parent 5a675d9113
commit b49d428299
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -282,7 +282,7 @@ namespace ImageTestHelper {
errors++;
}
}
std::cerr << "total errors is " << errors << "/" << size << ", errors rate is " << (float)errors / size;
std::cerr << "total errors is " << errors << "/" << size << ", errors rate is " << (float)errors / size << std::endl;
return (float)errors / size < cMaxErrorRate;
}
}