Clippy lint
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 1m41s
Cargo CI / Lint (pull_request) Successful in 1m14s

This commit is contained in:
Wojciech Kozlowski 2024-02-19 20:44:00 +01:00
parent 8cf68b6ea5
commit 074f539ea7
3 changed files with 3 additions and 2 deletions

View File

@ -131,8 +131,9 @@ impl<'a, MH: IMusicHoard> From<&'a mut AppInner<MH>> for AppPublicInner<'a> {
}
}
#[cfg(nightly)]
#[cfg(test)]
mod testmod;
mod benchmod;
#[cfg(test)]
mod tests {

View File

@ -469,7 +469,7 @@ mod benches {
// The purpose of these benches was to evaluate the benefit of AhoCorasick over std solutions.
use test::Bencher;
use crate::tui::{app::machine::testmod::ARTISTS, lib::MockIMusicHoard};
use crate::tui::{app::machine::benchmod::ARTISTS, lib::MockIMusicHoard};
use super::*;