chore: simplify test case after query state improvements

This commit is contained in:
Andrew Hlynskyi 2023-09-01 20:28:31 +03:00
parent 52f7eaff31
commit 08ac19086b

View file

@ -3605,12 +3605,7 @@ fn test_query_capture_names() {
assert_eq!(
query.capture_names(),
&[
"left-operand".to_string(),
"right-operand".to_string(),
"body".to_string(),
"loop-condition".to_string(),
]
["left-operand", "right-operand", "body", "loop-condition"]
);
});
}