Skip to content

Commit

Permalink
Fix whitespace in ignore-malformed-tags test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Dec 30, 2010
1 parent 9fc472b commit 8737784
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ module("Basics");
});

test("Ignore Malformed Tags", function() {
test_handler( 'a {{ one } b', R("a {{ one } b", testData), 'a {{ one } b' );
test_handler( 'first} {{ second }', R("${ one }} {{ two }", testData), 'first} {{ two }' );
test_handler( '{{ one }', R('{{ one }', testData), '{{ one }' );
test_handler( 'a {{one } b', R("a {{one } b", testData), 'a {{one } b' );
test_handler( 'first} {{second }', R("${ one }} {{two }", testData), 'first} {{two }' );
test_handler( '{{one }', R('{{one }', testData), '{{one }' );
});

// reserved words
Expand Down

0 comments on commit 8737784

Please sign in to comment.