Clean up some test imports

This commit is contained in:
Eryn Wells 2024-01-28 15:58:47 -08:00
parent 2d5710ccb1
commit ea22f7c5c7
2 changed files with 2 additions and 5 deletions

View file

@ -57,10 +57,7 @@ impl PawnMoveGenerator {
#[cfg(test)]
mod tests {
use super::*;
use crate::{
assert_move_list, position::DiagramFormatter, r#move::AlgebraicMoveFormatter,
test_position, Move, MoveBuilder,
};
use crate::{assert_move_list, position::DiagramFormatter, test_position, Move, MoveBuilder};
use chessfriend_core::{piece, Square};
use std::collections::HashSet;

View file

@ -1,7 +1,7 @@
// Eryn Wells <eryn@erynwells.me>
use super::{move_generator_declaration, MoveGeneratorInternal, MoveSet};
use crate::{MoveBuilder, Position};
use crate::Position;
use chessfriend_bitboard::BitBoard;
use chessfriend_core::{Color, Direction, Piece, PlacedPiece};