fix clippy error

This commit is contained in:
Filip Bachul 2023-04-19 19:07:21 +02:00
parent 97b66c75ff
commit 371ae3895b

View File

@ -133,6 +133,7 @@ pub fn get_conditional_style<'a>(
mod tests { mod tests {
use super::*; use super::*;
use crate::context::{Context, Shell, Target}; use crate::context::{Context, Shell, Target};
use crate::context_env::Env;
use crate::serde_utils::ValueDeserializer; use crate::serde_utils::ValueDeserializer;
use std::path::PathBuf; use std::path::PathBuf;
@ -143,6 +144,7 @@ mod tests {
Target::Main, Target::Main,
PathBuf::new(), PathBuf::new(),
PathBuf::new(), PathBuf::new(),
Env::default()
) )
} }