From 5a5757b07117feb4ba77c3179a53877a4e2bed51 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Wed, 24 Jul 2024 12:00:43 +0200 Subject: [PATCH] chore: fix warnings in tests --- tests/solver.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/solver.rs b/tests/solver.rs index e8a9e1c..474042c 100644 --- a/tests/solver.rs +++ b/tests/solver.rs @@ -11,9 +11,9 @@ fn wordlist() -> impl WordList { #[test] fn test_build_builtin_solvers() { let wl = wordlist(); - let stupid_solver = + let _stupid_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")); }