Skip to content

Commit

Permalink
chore: fix stale test
Browse files Browse the repository at this point in the history
  • Loading branch information
a-h committed Aug 18, 2024
1 parent 4c14ab0 commit c24c8e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.763
0.2.766
12 changes: 10 additions & 2 deletions parser/v2/elementparser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1549,11 +1549,19 @@ amount is charged</div>`,
},
Children: []Node{
Text{
Value: "for which any ",
Value: "for which any ",
Range: Range{
From: Position{Index: 5, Line: 0, Col: 5},
To: Position{Index: 19, Line: 0, Col: 19},
},
TrailingSpace: SpaceVertical,
},
Text{
Value: "amount is charged",
Value: "amount is charged",
Range: Range{
From: Position{Index: 20, Line: 1, Col: 0},
To: Position{Index: 37, Line: 1, Col: 17},
},
TrailingSpace: SpaceNone,
},
},
Expand Down

0 comments on commit c24c8e4

Please sign in to comment.