From 36664c8ac0360eced85ddc435bb23ead2f6eefcd Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 8 Apr 2024 12:30:58 -0700 Subject: [PATCH] Fix redundant imports --- src/tests.rs | 2 +- tests/integration.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tests.rs b/src/tests.rs index d9194e49..724de012 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -1,4 +1,4 @@ -use std::path::{Path, PathBuf}; +use std::path::PathBuf; use spanned::Spanned; diff --git a/tests/integration.rs b/tests/integration.rs index 783b306e..f036d4a6 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -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();