From 903974c81a1b0d46fec7b3beb0519775181c77f5 Mon Sep 17 00:00:00 2001 From: sndrs Date: Thu, 13 Jun 2013 15:36:56 +0100 Subject: [PATCH] tests for 6e5005ef7ed7c3dd9baf6ecc39c3ec1b2470b068 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit dammit! commited the wrong thing…fix that --- tests/minifier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/minifier.js b/tests/minifier.js index 444defb..a99ef41 100644 --- a/tests/minifier.js +++ b/tests/minifier.js @@ -78,7 +78,7 @@ equal(minify('

blah

\n\n\n '), '

blah

'); // tags from collapseWhitespaceSmart() ['a', 'b', 'big', 'button', 'code', 'em', 'font', 'i', 'kbd', 'mark', 'q', 's', 'small', 'span', 'strike', 'strong', 'sub', 'sup', 'tt', 'u'].forEach(function(el){ - equal(minify('

foo <'+el+'>baz bar

'), '

foo<'+el+'>baz bar

'); + equal(minify('

foo <'+el+'>baz bar

'), '

foo <'+el+'>baz bar

'); equal(minify('

foo<'+el+'>bazbar

'), '

foo<'+el+'>bazbar

'); }) equal(minify('

foo bar

'), '

foo bar

'); -- 2.34.1