Skip to content

Commit

Permalink
fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
darangi committed Feb 10, 2020
1 parent 604f34e commit 139a6a2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions spec/tree-sitter-language-mode-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,10 @@ describe('TreeSitterLanguageMode', () => {
languageMode.tree.rootNode
.descendantForPosition(Point(1, 2), Point(1, 6))
.toString()
).toBe(`
(declaration type: (primitive_type) declarator: (identifier) (MISSING ";"))
`);
).toBe(
'(declaration type: (primitive_type)' +
' declarator: (identifier) (MISSING ";"))'
);

expectTokensToEqual(editor, [
[
Expand Down

0 comments on commit 139a6a2

Please sign in to comment.