Skip to content

Commit

Permalink
fix: Remove redundant imports in test modules
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoradocchia committed Mar 10, 2024
1 parent ebbb0d8 commit d9e4e5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ impl XdgApp {
#[cfg(test)]
mod test {
use super::*;
use std::{env, error::Error, ffi::OsStr, fs, os::unix::prelude::OsStrExt, path::Path};
use std::{env, error::Error, ffi::OsStr, fs, os::unix::prelude::OsStrExt};

const INVALID_UNICODE_BYTES: [u8; 4] = [0xF0, 0x90, 0x80, 0x67];

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ impl Xdg {
#[cfg(test)]
mod test {
use super::*;
use std::{env, error::Error, ffi::OsStr, os::unix::prelude::OsStrExt, path::Path};
use std::{error::Error, ffi::OsStr, os::unix::prelude::OsStrExt};

const INVALID_UNICODE_BYTES: [u8; 4] = [0xF0, 0x90, 0x80, 0x67];

Expand Down

0 comments on commit d9e4e5e

Please sign in to comment.