Skip to content

Commit

Permalink
Fix redundant imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Apr 8, 2024
1 parent 3f834e7 commit 36664c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tests.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::path::{Path, PathBuf};
use std::path::PathBuf;

use spanned::Spanned;

Expand Down
3 changes: 1 addition & 2 deletions tests/integration.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use std::path::Path;

use ui_test::color_eyre::Result;
use ui_test::{filter::Match, spanned::Spanned, *};
use ui_test::{spanned::Spanned, *};

fn main() -> Result<()> {
let path = Path::new(file!()).parent().unwrap();
Expand Down

0 comments on commit 36664c8

Please sign in to comment.