Skip to content
Snippets Groups Projects
Commit 6d12b2fc authored by Thomas Kinnen's avatar Thomas Kinnen
Browse files

Make test variable naming consistent. Use @ for arrays

parent 8dae3870
No related branches found
No related tags found
1 merge request!655Make test variable naming consistent. Use @ for arrays
......@@ -225,7 +225,7 @@ mod test {
fn array(&self, variable: &str, _: Select) -> Option<Array> {
match variable {
"$ARRAY" => Some(array!["a", "b", "c"].to_owned()),
"ARRAY" => Some(array!["a", "b", "c"].to_owned()),
_ => None,
}
}
......@@ -468,7 +468,7 @@ mod test {
fn test_reverse() {
let method = ArrayMethod {
method: "reverse",
variable: "$ARRAY",
variable: "@ARRAY",
pattern: Pattern::StringPattern("3"),
selection: Select::All,
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment