Skip to content

Commit c24c8e4

Browse files
committedAug 18, 2024··
chore: fix stale test
1 parent 4c14ab0 commit c24c8e4

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed
 

‎.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.763
1+
0.2.766

‎parser/v2/elementparser_test.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -1549,11 +1549,19 @@ amount is charged</div>`,
15491549
},
15501550
Children: []Node{
15511551
Text{
1552-
Value: "for which any ",
1552+
Value: "for which any ",
1553+
Range: Range{
1554+
From: Position{Index: 5, Line: 0, Col: 5},
1555+
To: Position{Index: 19, Line: 0, Col: 19},
1556+
},
15531557
TrailingSpace: SpaceVertical,
15541558
},
15551559
Text{
1556-
Value: "amount is charged",
1560+
Value: "amount is charged",
1561+
Range: Range{
1562+
From: Position{Index: 20, Line: 1, Col: 0},
1563+
To: Position{Index: 37, Line: 1, Col: 17},
1564+
},
15571565
TrailingSpace: SpaceNone,
15581566
},
15591567
},

0 commit comments

Comments
 (0)
Please sign in to comment.