From fe7436c8e317444d46c24e6b1a59c379686e6d06 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 24 Oct 2024 17:10:08 +0200 Subject: [PATCH] refactor: removed unused import --- tests/e2e/web/api/v1/contexts/category/contract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/web/api/v1/contexts/category/contract.rs b/tests/e2e/web/api/v1/contexts/category/contract.rs index 269d2d0d..7f4963f0 100644 --- a/tests/e2e/web/api/v1/contexts/category/contract.rs +++ b/tests/e2e/web/api/v1/contexts/category/contract.rs @@ -10,7 +10,7 @@ use crate::common::contexts::category::forms::{AddCategoryForm, DeleteCategoryFo use crate::common::contexts::category::responses::ListResponse; use crate::e2e::environment::TestEnv; use crate::e2e::web::api::v1::contexts::category::steps::{add_category, add_random_category}; -use crate::e2e::web::api::v1::contexts::user::steps::{new_logged_in_admin, new_logged_in_user}; +use crate::e2e::web::api::v1::contexts::user::steps::new_logged_in_admin; #[tokio::test] async fn it_should_return_an_empty_category_list_when_there_are_no_categories() {