Skip to content

Commit dd27fb0

Browse files
committed
fix: test names
Signed-off-by: Ian Lewis <ian@ianlewis.org>
1 parent 48af351 commit dd27fb0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

parser_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func TestParser_parse_op2(t *testing.T) {
163163
}
164164
}
165165

166-
func TestParserContext_NextPeek(t *testing.T) {
166+
func TestParseCursor_NextPeek(t *testing.T) {
167167
t.Parallel()
168168

169169
input := "A B C"
@@ -262,7 +262,7 @@ func TestParserContext_NextPeek(t *testing.T) {
262262
}
263263
}
264264

265-
func TestParserContext_Node(t *testing.T) {
265+
func TestParseCursor_Node(t *testing.T) {
266266
t.Parallel()
267267

268268
parser := NewParser[string](nil, nil)
@@ -320,7 +320,7 @@ func TestParserContext_Node(t *testing.T) {
320320
}
321321
}
322322

323-
func TestParserContext_ClimbPos(t *testing.T) {
323+
func TestParseCursor_ClimbPos(t *testing.T) {
324324
t.Parallel()
325325

326326
parser := NewParser[string](nil, nil)
@@ -388,7 +388,7 @@ func TestParserContext_ClimbPos(t *testing.T) {
388388
}
389389
}
390390

391-
func TestParserContext_Push(t *testing.T) {
391+
func TestParseCursor_Push(t *testing.T) {
392392
t.Parallel()
393393

394394
parser := NewParser[string](nil, nil)
@@ -503,7 +503,7 @@ func TestParser_Replace(t *testing.T) {
503503
}
504504
}
505505

506-
func TestParserContext_Replace_root(t *testing.T) {
506+
func TestParseCursor_Replace_root(t *testing.T) {
507507
t.Parallel()
508508

509509
parser := NewParser[string](nil, nil)

0 commit comments

Comments
 (0)