Skip to content

Commit

Permalink
isLiteralSymbol fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcanaltin committed Feb 8, 2023
1 parent 7cc86fb commit e05f17f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-runner-tap-lexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require('../common');
const assert = require('assert');

const { TapLexer, TokenKind, isLiteralSymbol } = require('internal/test_runner/tap_lexer');
const { TapLexer, TokenKind } = require('internal/test_runner/tap_lexer');

function TAPLexer(input) {
const lexer = new TapLexer(input);
Expand Down Expand Up @@ -479,4 +479,4 @@ ok 1
assert.strictEqual(tokens[index].kind, token.kind);
assert.strictEqual(tokens[index].value, token.value);
});
}
}

0 comments on commit e05f17f

Please sign in to comment.