Fix tests for chunk.rs

This commit is contained in:
Tangent 128 2017-09-30 02:23:27 -04:00
parent dae4a49481
commit 3e1bec93ee
1 changed files with 1 additions and 7 deletions

View File

@ -76,12 +76,6 @@ mod tests {
#[test]
fn enough_space_for_header() {
let mut chunk: Chunk = Chunk::ClusterHead {
keyframe: false,
start: 0,
end: 0,
bytes: [0;16]
};
chunk.update_timecode(u64::max_value());
Chunk::<Vec<u8>>::new_cluster_head(u64::max_value());
}
}