Skip to content

Commit

Permalink
Fixed redundant imports
Browse files Browse the repository at this point in the history
  • Loading branch information
folkengine committed Mar 23, 2024
1 parent d7255c7 commit a1a32f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cards/rank.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ impl Named for Rank {
#[allow(non_snake_case)]
mod rank_tests {
use super::*;
use crate::{GERMAN, US_ENGLISH};
use crate::{GERMAN};
use rstest::rstest;

#[test]
Expand Down
2 changes: 1 addition & 1 deletion src/cards/suit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ impl Named for Suit {
#[allow(non_snake_case)]
mod suit_tests {
use super::*;
use crate::{GERMAN, US_ENGLISH};
use crate::{GERMAN};
use rstest::rstest;

#[test]
Expand Down

0 comments on commit a1a32f7

Please sign in to comment.