Fix more formatting issues (sort imports)

This commit is contained in:
Chris Hennick 2023-04-23 15:26:00 -07:00
parent 06b5ceaef9
commit 98d37c8b77
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
2 changed files with 3 additions and 3 deletions

View file

@ -3,8 +3,8 @@ use bencher::{benchmark_group, benchmark_main};
use std::io::{Cursor, Write};
use bencher::Bencher;
use zip_next::{CompressionMethod, ZipArchive, ZipWriter};
use zip_next::write::FileOptions;
use zip_next::{CompressionMethod, ZipArchive, ZipWriter};
const FILE_COUNT: usize = 15_000;
const FILE_SIZE: usize = 1024;

View file

@ -3,9 +3,9 @@ use std::collections::HashSet;
use std::io::prelude::*;
use std::io::{Cursor, Seek};
use std::iter::FromIterator;
use zip_next::write::FileOptions;
use zip_next::{CompressionMethod, SUPPORTED_COMPRESSION_METHODS, ZipWriter};
use zip_next::result::ZipResult;
use zip_next::write::FileOptions;
use zip_next::{CompressionMethod, ZipWriter, SUPPORTED_COMPRESSION_METHODS};
// This test asserts that after creating a zip file, then reading its contents back out,
// the extracted data will *always* be exactly the same as the original data.