Skip to content

Commit

Permalink
Fix more formatting issues (sort imports)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Apr 23, 2023
1 parent 06b5cea commit 98d37c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benches/read_metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions tests/end_to_end.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 98d37c8

Please sign in to comment.