aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/repository.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/repository.rs')
-rw-r--r--crates/mozart/src/commands/repository.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/repository.rs b/crates/mozart/src/commands/repository.rs
index 0931b66..e8ca920 100644
--- a/crates/mozart/src/commands/repository.rs
+++ b/crates/mozart/src/commands/repository.rs
@@ -1085,7 +1085,7 @@ mod tests {
});
let result = normalize_repositories(&val);
assert_eq!(result.len(), 2);
- let names: std::collections::HashSet<&str> = result
+ let names: indexmap::IndexSet<&str> = result
.iter()
.filter_map(|v| v.get("name").and_then(|n| n.as_str()))
.collect();