Rename =^ to 'starts-with' (#5407)

This commit is contained in:
JT
2022-05-02 19:20:07 +12:00
committed by GitHub
parent 1f7d3498cd
commit 4a69819f9a
3 changed files with 3 additions and 3 deletions

View File

@ -321,7 +321,7 @@ fn capture_row_condition() -> TestResult {
#[test]
fn starts_with_operator_succeeds() -> TestResult {
run_test(
r#"[Moe Larry Curly] | where $it =^ L | str collect"#,
r#"[Moe Larry Curly] | where $it starts-with L | str collect"#,
"Larry",
)
}