From 22a00036e298daf3623ac6a7bc4d971d6058795e Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Sun, 15 May 2022 09:41:25 +0000 Subject: [PATCH] gapi(test): reduce used amount of memory --- modules/gapi/test/rmat/rmat_view_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gapi/test/rmat/rmat_view_tests.cpp b/modules/gapi/test/rmat/rmat_view_tests.cpp index d829b6c655..f7458e8d94 100644 --- a/modules/gapi/test/rmat/rmat_view_tests.cpp +++ b/modules/gapi/test/rmat/rmat_view_tests.cpp @@ -132,7 +132,7 @@ TEST_P(RMatViewNDTest, StepFromView) { INSTANTIATE_TEST_CASE_P(Test, RMatViewNDTest, Combine(Values(CV_8U, CV_32F), // depth - Values(1,2,3,4,7))); // ndims + Values(1,2,3,4,5))); // ndims struct RMatViewNDTestNegative : public TestWithParam< std::tuple>{}; @@ -153,7 +153,7 @@ TEST_P(RMatViewNDTestNegative, DefaultStep) { INSTANTIATE_TEST_CASE_P(Test, RMatViewNDTestNegative, Combine(Values(CV_8U, CV_32F), // depth Values(1,2,3,4), // chan - Values(2,4,7))); // ndims + Values(2,4,5))); // ndims TEST_P(RMatViewTest, NonDefaultStepInput) { auto type = GetParam();