From e01daef364ebc26243f807b2dc9cd4bb09225b5e Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Mon, 8 Mar 2021 16:58:27 -0800 Subject: [PATCH] Relax expectation so encoder test passes on ARM Signed-off-by: Louise Poubel --- test/integration/video_encoder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/video_encoder.cc b/test/integration/video_encoder.cc index 42bd8c7b5..eabf03ea3 100644 --- a/test/integration/video_encoder.cc +++ b/test/integration/video_encoder.cc @@ -132,7 +132,7 @@ TEST_F(EncoderDecoderTest, DecodeEncodeDecode) EXPECT_GE(numFrames2, expectedNumFrames2); // average color intensities should be pretty close - EXPECT_NEAR(avgIntensity2, avgIntensity, 1.0); + EXPECT_NEAR(avgIntensity2, avgIntensity, 2.0); delete[] buf; }