Remove temporary region file in test

This commit is contained in:
crumblingstatue 2023-04-14 23:45:30 +02:00
parent 8345879a61
commit e9e7b6246f

View file

@ -94,4 +94,5 @@ fn test_chunk_seri() {
save_chunk(&ChunkPos { x: 3, y: 0 }, &chk);
let raw = std::fs::read("0.0.rgn").unwrap();
zstd::decode_all(&raw[8..]).unwrap();
std::fs::remove_file("0.0.rgn").unwrap();
}