]> git.sesse.net Git - movit/blobdiff - ycbcr_422interleaved_input_test.cpp
Small whitespace fix.
[movit] / ycbcr_422interleaved_input_test.cpp
index d47bb905cb43e466350204cf69d775172134bb74..ac61ec1857f3cfd142f68d7c245bb39a728e4ff2 100644 (file)
@@ -57,9 +57,9 @@ TEST(YCbCr422InterleavedInputTest, Simple422) {
 
        tester.run(out_data, GL_RGBA, COLORSPACE_sRGB, GAMMA_sRGB);
 
-        // Y'CbCr isn't 100% accurate (the input values are rounded),
-        // so we need some leeway.
-        expect_equal(expected_data, out_data, 4 * width, height, 0.025, 0.002);
+       // Y'CbCr isn't 100% accurate (the input values are rounded),
+       // so we need some leeway.
+       expect_equal(expected_data, out_data, 4 * width, height, 0.025, 0.002);
 }
 
 // Adapted from the YCbCrInput test of the same name.