From 905d96dd4a60216706f7f173fb57c47a6e8713bf Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Mon, 3 Dec 2018 14:34:29 +0300 Subject: [PATCH] Restored 500ms delay in highgui test --- modules/highgui/test/test_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/highgui/test/test_gui.cpp b/modules/highgui/test/test_gui.cpp index d69477b5aa..c973771e98 100644 --- a/modules/highgui/test/test_gui.cpp +++ b/modules/highgui/test/test_gui.cpp @@ -47,7 +47,7 @@ namespace opencv_test { namespace { inline void verify_size(const std::string &nm, const cv::Mat &img) { EXPECT_NO_THROW(imshow(nm, img)); - EXPECT_EQ(-1, waitKey(100)); + EXPECT_EQ(-1, waitKey(500)); Rect rc; EXPECT_NO_THROW(rc = getWindowImageRect(nm)); EXPECT_EQ(rc.size(), img.size());