]> git.sesse.net Git - movit/blobdiff - effect_chain_test.cpp
Merge branch '1.3.x-release'
[movit] / effect_chain_test.cpp
index a9c06bad0e4f0c2bee5da217aed37f0a0b9b382e..adf832ac61e4ad445f115a72b83f324352f78812 100644 (file)
@@ -1315,6 +1315,8 @@ TEST(EffectChainTest, sRGBIntermediate) {
 
        EXPECT_GE(fabs(out_data[1] - data[1]), 1e-3)
            << "Expected sRGB not to be able to represent 0.5 exactly (got " << out_data[1] << ")";
+       EXPECT_LT(fabs(out_data[1] - data[1]), 0.1f)
+           << "Expected sRGB to be able to represent 0.5 approximately (got " << out_data[1] << ")";
 }
 
 }  // namespace movit