Fix issue in external subexpression paths (#3642)

* Fix issue in external subexpression paths

* new clippy dropped

* clippy
This commit is contained in:
JT
2021-06-18 07:59:58 +12:00
committed by GitHub
parent 6c2c16a971
commit d9d956e54f
159 changed files with 285 additions and 324 deletions

View File

@ -14,7 +14,7 @@ fn checks_any_row_is_true() {
| any? $it == "New Zealand"
"#
)),
says().to_stdout("true")
says().stdout("true")
);
})
}
@ -35,7 +35,7 @@ fn checks_any_column_of_a_table_is_true() {
| any? rusty_at == 10/12/2013
"#
)),
says().to_stdout("true")
says().stdout("true")
);
})
}