From 5d68c8dbe71b0bd5a4e0925286db6004b0b92a4a Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Thu, 31 May 2018 18:54:43 +0300 Subject: [PATCH] videoio(test): fixup information dump --- modules/videoio/test/test_ffmpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/videoio/test/test_ffmpeg.cpp b/modules/videoio/test/test_ffmpeg.cpp index c5e326a86a..e9e5e9aca1 100644 --- a/modules/videoio/test/test_ffmpeg.cpp +++ b/modules/videoio/test/test_ffmpeg.cpp @@ -357,7 +357,7 @@ public: for (unsigned int i = 0; i < frameCount && next; ++i) { - SCOPED_TRACE(cv::format("frame=%d", (int)frameCount)); + SCOPED_TRACE(cv::format("frame=%d/%d", (int)i, (int)frameCount)); Mat actual; (*capture) >> actual;