From 4dc634655edac54e9638e8390d89a96e235522c0 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 10 Jan 2025 17:23:00 +0100 Subject: Reorganize imports to be more consistent --- tests/create_directories.rs | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'tests/create_directories.rs') diff --git a/tests/create_directories.rs b/tests/create_directories.rs index 380c796..c15b40f 100644 --- a/tests/create_directories.rs +++ b/tests/create_directories.rs @@ -1,15 +1,19 @@ -mod fixtures; - -use fixtures::{server, Error, TestServer, DIRECTORIES}; -use reqwest::blocking::{multipart, Client}; -use rstest::rstest; -use select::document::Document; -use select::predicate::{Attr, Text}; #[cfg(unix)] use std::os::unix::fs::symlink as symlink_dir; #[cfg(windows)] use std::os::windows::fs::symlink_dir; +use reqwest::blocking::{multipart, Client}; +use rstest::rstest; +use select::{ + document::Document, + predicate::{Attr, Text}, +}; + +mod fixtures; + +use crate::fixtures::{server, Error, TestServer, DIRECTORIES}; + /// This should work because the flags for uploading files and creating directories /// are set, and the directory name and path are valid. #[rstest] -- cgit v1.2.3