Skip to content

Commit 28a7703

Browse files
committed
✏️ Typo in unit test
1 parent e559ad3 commit 28a7703

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/all/langs.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ describe('langs', () => {
1515

1616
// A previously supported language
1717
test(Lang.Go, ({ assert }) => {
18-
const sg = parse(Lang.Dart, 'x := "Hello, world!"')
18+
const sg = parse(Lang.Go, 'x := "Hello, world!"')
1919
const kind = sg.root().kind()
20-
assert.equal(kind, 'program')
20+
assert.equal(kind, 'source_file')
2121
})
2222

2323
// A built-in language

0 commit comments

Comments
 (0)