aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/comp/suggest.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-24 06:58:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-24 06:58:09 +0800
commitdc13fa58448b7e267fb0ba63427534127f76beca (patch)
tree7219f10bf3da22fdbe2cf4f41719505dcb75d6d2 /mingling_core/src/comp/suggest.rs
parentdd6253ba8c37b51927ab4dc0e71f5b3a264f36b3 (diff)
Move flag tests to separate module and clean up deref patterns
Diffstat (limited to 'mingling_core/src/comp/suggest.rs')
-rw-r--r--mingling_core/src/comp/suggest.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mingling_core/src/comp/suggest.rs b/mingling_core/src/comp/suggest.rs
index 03842e1..bd5dea6 100644
--- a/mingling_core/src/comp/suggest.rs
+++ b/mingling_core/src/comp/suggest.rs
@@ -243,7 +243,7 @@ mod tests {
#[test]
fn test_deref_suggest() {
let s: Suggest = ["hello"].into();
- let set: &BTreeSet<SuggestItem> = &*s;
+ let set: &BTreeSet<SuggestItem> = &s;
assert_eq!(set.len(), 1);
}
@@ -354,7 +354,7 @@ mod tests {
#[test]
fn test_ord_by_suggest_text() {
- let mut items = vec![
+ let mut items = [
SuggestItem::new("z".to_string()),
SuggestItem::new("a".to_string()),
SuggestItem::new("m".to_string()),
@@ -367,7 +367,7 @@ mod tests {
#[test]
fn test_ord_with_description() {
- let mut items = vec![
+ let mut items = [
SuggestItem::new_with_desc("z".to_string(), "zzz".to_string()),
SuggestItem::new("a".to_string()),
SuggestItem::new_with_desc("m".to_string(), "mmm".to_string()),