Update unit tests to reflect python and ruby grammar changes

This commit is contained in:
Max Brunsfeld 2020-11-16 10:51:08 -08:00
parent 29dbc79402
commit b267f90e64
2 changed files with 2 additions and 2 deletions

View file

@ -739,7 +739,7 @@ fn test_node_numeric_symbols_respect_simple_aliases() {
let root = tree.root_node();
assert_eq!(
root.to_sexp(),
"(program (binary left: (unary (identifier)) right: (identifier)))",
"(program (binary left: (unary operand: (identifier)) right: (identifier)))",
);
let binary_node = root.child(0).unwrap();