We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbedf05 commit eb950b3Copy full SHA for eb950b3
+tests/+unit/multipleShapesTest.m
@@ -23,10 +23,10 @@ function testMultipleShapesDataset(testCase)
23
24
function testNullShapeDataset(testCase)
25
nsd = types.mss.NullShapeDataset;
26
-randiMax = intmax('int8');
+randiMax = intmax('int8') - 1;
27
for i=1:100
28
%test validation
29
- nsd.data = rand(randi(randiMax), 3);
+ nsd.data = rand(randi(randiMax) + 1, 3);
30
end
31
roundabout(testCase, nsd);
32
0 commit comments