Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Jul 22, 2023
1 parent 5801de4 commit 7047b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/shared_types/src/project_conf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub struct PathMatcher {}

#[cfg(test)]
mod tests {
use std::collections::HashMap;
use std::collections::{BTreeMap, HashMap};

use crate::{
build_config::{BuildConfig, GrpBuildConfig},
Expand Down Expand Up @@ -167,7 +167,7 @@ mod tests {
}),
test: None,
binary_application: None,
secondary_rules: HashMap::default()
secondary_rules: BTreeMap::default()
},
main_roots: vec!["src/main/python".to_string()],
test_roots: vec!["src/test/python".to_string()]
Expand Down

0 comments on commit 7047b57

Please sign in to comment.