Commit ae5661d5 authored by Andrey Kamaev's avatar Andrey Kamaev

Fix random failures of Split and Merge tests

parent 867ddebe
......@@ -925,7 +925,7 @@ protected:
RNG& rng = theRNG();
Size mSize(rng.uniform(minMSize, maxMSize), rng.uniform(minMSize, maxMSize));
size_t mvSize = rng(maxMvSize);
size_t mvSize = rng.uniform(1, maxMvSize);
int res = cvtest::TS::OK, curRes = res;
curRes = run_case(CV_8U, mvSize, mSize, rng);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment