Compare commits

...

1 commit

Author SHA1 Message Date
5a5757b071 chore: fix warnings in tests
Some checks failed
cargo devel CI / cargo CI (push) Has been cancelled
2024-07-24 12:00:52 +02:00

View file

@ -11,9 +11,9 @@ fn wordlist() -> impl WordList {
#[test] #[test]
fn test_build_builtin_solvers() { fn test_build_builtin_solvers() {
let wl = wordlist(); let wl = wordlist();
let stupid_solver = let _stupid_solver =
AnyBuiltinSolver::Stupid(StupidSolver::build(&wl).expect("could not build naive solver")); AnyBuiltinSolver::Stupid(StupidSolver::build(&wl).expect("could not build naive solver"));
let naive_solver = let _naive_solver =
AnyBuiltinSolver::Naive(NaiveSolver::build(&wl).expect("could not build naive solver")); AnyBuiltinSolver::Naive(NaiveSolver::build(&wl).expect("could not build naive solver"));
} }