Altered populate function.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
This commit is contained in:
@@ -157,7 +157,7 @@ fn can_query_use_multiple_fields() {
|
||||
vec!["b", "a"],
|
||||
vec!["b", "b"],
|
||||
];
|
||||
test_doc.populate_multiple(&mut mtt, input);
|
||||
test_doc.populate_multiple(mtt.clone(), input);
|
||||
let mut calc1 = Calculation::new(Operand::Equal);
|
||||
calc1.add_value("a").unwrap();
|
||||
calc1
|
||||
@@ -196,7 +196,7 @@ fn can_query_use_multiple_indexed_fields() {
|
||||
vec!["b", "a"],
|
||||
vec!["b", "b"],
|
||||
];
|
||||
test_doc.populate_multiple(&mut mtt, input);
|
||||
test_doc.populate_multiple(mtt.clone(), input);
|
||||
let mut calc1 = Calculation::new(Operand::Equal);
|
||||
calc1.add_value("a").unwrap();
|
||||
calc1
|
||||
@@ -232,7 +232,7 @@ fn can_query_use_multiple_mixed_index_fields() {
|
||||
vec!["b", "a"],
|
||||
vec!["b", "b"],
|
||||
];
|
||||
test_doc.populate_multiple(&mut mtt, input);
|
||||
test_doc.populate_multiple(mtt.clone(), input);
|
||||
let mut calc1 = Calculation::new(Operand::Equal);
|
||||
calc1.add_value("a").unwrap();
|
||||
calc1
|
||||
|
||||
Reference in New Issue
Block a user