Skip to content

Commit 8cba84d

Browse files
committed
Merge pull request #1015 from aymerick/fix-test
Fix tokenizer test for double quoted strings
2 parents 00bfdd7 + afd595b commit 8cba84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/tokenizer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ describe('Tokenizer', function() {
264264
});
265265

266266
it('tokenizes mustaches with String params as "OPEN ID ID STRING CLOSE"', function() {
267-
var result = tokenize('{{ foo bar \'baz\' }}');
267+
var result = tokenize('{{ foo bar \"baz\" }}');
268268
shouldMatchTokens(result, ['OPEN', 'ID', 'ID', 'STRING', 'CLOSE']);
269269
shouldBeToken(result[3], 'STRING', 'baz');
270270
});

0 commit comments

Comments
 (0)