File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ TEST_P(RMatViewNDTest, DefaultStep) {
76
76
std::tie (depth, ndims) = GetParam ();
77
77
std::vector<int > dims (ndims, 12 );
78
78
GMatDesc desc;
79
- desc.size . dims = desc. dims = dims;
79
+ desc.dims = dims;
80
80
desc.depth = depth;
81
81
GAPI_Assert (desc.chan == -1 );
82
82
auto elemSize = CV_ELEM_SIZE (depth);
@@ -113,7 +113,7 @@ TEST_P(RMatViewNDTest, StepFromView) {
113
113
std::vector<int > dims (ndims, 12 );
114
114
std::vector<int > aligned (ndims, 16 );
115
115
GMatDesc desc;
116
- desc.size . dims = desc. dims = dims;
116
+ desc.dims = dims;
117
117
desc.depth = depth;
118
118
GAPI_Assert (desc.chan == -1 );
119
119
auto elemSize = CV_ELEM_SIZE (depth);
@@ -145,7 +145,7 @@ TEST_P(RMatViewNDTestNegative, DefaultStep) {
145
145
std::tie (depth, chan, ndims) = GetParam ();
146
146
std::vector<int > dims (ndims, 12 );
147
147
GMatDesc desc;
148
- desc.size . dims = desc. dims = dims;
148
+ desc.dims = dims;
149
149
desc.depth = depth;
150
150
desc.chan = chan;
151
151
auto elemSize = CV_ELEM_SIZE (depth);
You can’t perform that action at this time.
0 commit comments