Fix tests

This commit is contained in:
masad-frost 2018-07-02 19:14:04 -07:00
parent 76f0f15077
commit 59cf966107
2 changed files with 78 additions and 78 deletions

View file

@ -83,7 +83,7 @@ testTokenization('clojure', [
], ],
[ [
{ {
line: '#x03BB', line: '0xff',
tokens: [{ startIndex: 0, type: 'number.hex.clj' }], tokens: [{ startIndex: 0, type: 'number.hex.clj' }],
}, },
], ],

View file

@ -29,7 +29,7 @@ testTokenization('scheme', [
], ],
[ [
{ {
line: '|# comment', line: '#| comment',
tokens: [{ startIndex: 0, type: 'comment.scheme' }], tokens: [{ startIndex: 0, type: 'comment.scheme' }],
}, },
{ {
@ -37,7 +37,7 @@ testTokenization('scheme', [
tokens: [{ startIndex: 0, type: 'comment.scheme' }], tokens: [{ startIndex: 0, type: 'comment.scheme' }],
}, },
{ {
line: '#| cons', line: '|# cons',
tokens: [ tokens: [
{ startIndex: 0, type: 'comment.scheme' }, { startIndex: 0, type: 'comment.scheme' },
{ startIndex: 2, type: 'white.scheme' }, { startIndex: 2, type: 'white.scheme' },