chore: Run cargo fix

This commit is contained in:
Joel Therrien 2025-02-20 21:03:46 -08:00
parent 81aca8a96c
commit 5aa8d54bca

View file

@ -742,7 +742,7 @@ fn find_word_on_line(line_letters: &Vec<Option<Letter>>, line_index: i8) -> Stri
#[cfg(test)]
mod tests {
use super::*;
use crate::dictionary::Dictionary;
use rand::rngs::SmallRng;
use rand::SeedableRng;
@ -986,7 +986,7 @@ mod tests {
#[test]
fn test_starting_move() {
let mut board = Board::new();
let board = Board::new();
let difficulty = Difficulty {
proportion: 0.1,