test: clarify fail messages

pull/9741/head
Alexander Alekhin 7 years ago
parent a6d634b5b8
commit 39ee07b8f6
  1. 4
      modules/stitching/perf/perf_matchers.cpp

@ -166,12 +166,12 @@ PERF_TEST_P( matchVector, bestOf2NearestVectorFeatures, testing::Combine(
if (pairwise_matches[i].src_img_idx < 0) if (pairwise_matches[i].src_img_idx < 0)
continue; continue;
EXPECT_TRUE(pairwise_matches[i].matches.size() > 100); EXPECT_GT(pairwise_matches[i].matches.size(), 100);
EXPECT_FALSE(pairwise_matches[i].H.empty()); EXPECT_FALSE(pairwise_matches[i].H.empty());
++matches_count; ++matches_count;
} }
EXPECT_TRUE(matches_count > 0); EXPECT_GT(matches_count, 0u);
SANITY_CHECK_NOTHING(); SANITY_CHECK_NOTHING();
} }

Loading…
Cancel
Save