From: Steinar H. Gunderson Date: Thu, 30 Jul 2015 10:39:32 +0000 (+0200) Subject: Small whitespace fix. X-Git-Tag: 1.2.0~42 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=535fc8a0df75648968fd42c2f1ce8b150f5c2c13 Small whitespace fix. --- diff --git a/ycbcr_422interleaved_input_test.cpp b/ycbcr_422interleaved_input_test.cpp index d47bb90..ac61ec1 100644 --- a/ycbcr_422interleaved_input_test.cpp +++ b/ycbcr_422interleaved_input_test.cpp @@ -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.