Skip to content

Commit

Permalink
Fix parser test
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniosarosi committed Dec 9, 2024
1 parent 0331f42 commit 6e64ed0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions engine/baml-lib/schema-ast/src/parser/parse_assignment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,14 @@ mod tests {
identifier(0, 4, [single_word(0, 4)]),
identifier(5, 9, [single_word(5, 9)]),
assignment(10, 11),
field_type(12, 15, [
non_union(12, 15, [
identifier(12, 15, [single_word(12, 15)])
])
field_type_with_attr(12, 15, [
field_type(12, 15, [
non_union(12, 15, [
identifier(12, 15, [single_word(12, 15)])
]),
]),
]),
])
]),
]
}

Expand Down

0 comments on commit 6e64ed0

Please sign in to comment.