1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

build: eliminate build warnings on Ubuntu 20.04/16.04

This commit is contained in:
Alexander Alekhin
2022-12-20 06:36:01 +00:00
parent da43778c1f
commit 3f7ec99166
4 changed files with 9 additions and 6 deletions
@@ -138,9 +138,9 @@ TEST(GStreamerPipelineFacadeTest, IsPlayingUnitTest)
"video/x-raw,width=1920,height=1080,framerate=3/1 ! "
"appsink name=sink2");
EXPECT_EQ(false, pipelineFacade.isPlaying());
EXPECT_FALSE(pipelineFacade.isPlaying());
pipelineFacade.play();
EXPECT_EQ(true, pipelineFacade.isPlaying());
EXPECT_TRUE(pipelineFacade.isPlaying());
}
TEST(GStreamerPipelineFacadeTest, MTSafetyUnitTest)