Skip to content
Snippets Groups Projects
Verified Commit 4036df4d authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Update tests

parent 9b792eba
No related branches found
No related tags found
1 merge request!40Add Summaryslice interval iterator helper
......@@ -347,9 +347,14 @@ end
@test 0 == length(suslis[1])
@test 1 == length(suslis[2])
@test 2 == length(suslis[3])
@test all(20 .== length(suslis[3:end-2]))
@test all(20 .== length.(suslis[4:end-5]))
@test 8 == length(suslis[end-1])
@test 6 == length(suslis[end])
flat_suslis = vcat(suslis...)
frame_indices = [s.header.frame_index for s in flat_suslis]
@test issorted(frame_indices)
@test frame_indices == sort([s.header.frame_index for s in f.online.summaryslices])
close(f)
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment