Skip to content

Commit 70af781

Browse files
author
Lawrence
committed
Update Dynamic Table Tests
Append data size was not correct due to doubling the data size.
1 parent fb7b2c3 commit 70af781

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

+tests/+system/DynamicTableTest.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ function addContainer(~, file)
2929

3030
function appendContainer(testCase, file)
3131
container = testCase.getContainer(file);
32-
container.data = rand(500, 1); % new random values.
32+
container.data = rand(1000, 1); % new random values.
3333
file.intervals_trials.colnames{end+1} = 'newcolumn';
3434
file.intervals_trials.vectordata.set('newcolumn',...
3535
types.hdmf_common.VectorData(...
3636
'description', 'newly added column',...
37-
'data', 100:-1:1));
37+
'data', 200:-1:1));
3838
end
3939
end
4040

0 commit comments

Comments
 (0)