Skip to content

Commit a2d0351

Browse files
committed
rename test
1 parent 3eb1e07 commit a2d0351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function uniquePairs<T>(
5252
return array.flatMap((a, i) => array.slice(i + 1).map((b) => [a, b]));
5353
}
5454

55-
Deno.test("parser", () => {
55+
Deno.test("small parser", () => {
5656
const space = match(/\s*/, "space");
5757
const parser = sequence(
5858
match(/toki/, '"toki"').skip(space),

0 commit comments

Comments
 (0)