[position] Remove some unused imports from peterellisjones tests

This commit is contained in:
Eryn Wells 2025-06-07 20:09:15 -07:00
parent 638ef5e66a
commit 5085cef197

View file

@ -6,11 +6,11 @@
//! [1]: https://peterellisjones.com
//! [2]: https://peterellisjones.com/posts/generating-legal-chess-moves-efficiently/
use chessfriend_core::{Color, Square};
use chessfriend_core::Color;
use chessfriend_moves::{
assert_move_list, assert_move_list_contains, assert_move_list_does_not_contain, ply, Move,
};
use chessfriend_position::{test_position, testing::*};
use chessfriend_position::test_position;
use std::collections::HashSet;
#[test]