source tests: check write on write_sample_zip
This commit is contained in:
parent
e32316c6aa
commit
acf741e721
@ -261,9 +261,9 @@ pub mod reader_sync {
|
|||||||
zip_file
|
zip_file
|
||||||
.start_file("test.json", options)
|
.start_file("test.json", options)
|
||||||
.expect("zip start file");
|
.expect("zip start file");
|
||||||
zip_file
|
let data = serde_json::to_vec(&batch).unwrap();
|
||||||
.write(serde_json::to_vec(&batch).unwrap().as_slice())
|
let amount = zip_file.write(data.as_slice()).expect("write entry");
|
||||||
.expect("write entry");
|
assert_eq!(amount, data.len());
|
||||||
zip_file.finish().expect("finish zip file");
|
zip_file.finish().expect("finish zip file");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user