From 3f1f145fe387979cd0830ad6c5e0fba513255c0b Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 23 Apr 2013 10:56:29 +0300 Subject: [PATCH] test: Remove extra commas. --- test/binary-test.js | 2 +- test/unit-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/binary-test.js b/test/binary-test.js index c1a9e612..0684aa37 100644 --- a/test/binary-test.js +++ b/test/binary-test.js @@ -45,7 +45,7 @@ exports.commandsSuite = vows.describe('binary commands').addBatch({ }, 'should output gzipping multiple files example': function(error, stdout) { assert.equal(stdout.indexOf('cat one.css two.css three.css | cleancss | gzip -9 -c > merged-minified-and-gzipped.css.gz') > -1, true); - }, + } }), 'version': binaryContext('-v', { 'should output help': function(error, stdout) { diff --git a/test/unit-test.js b/test/unit-test.js index 99611cb2..f149ee6e 100644 --- a/test/unit-test.js +++ b/test/unit-test.js @@ -122,7 +122,7 @@ vows.describe('clean-units').addBatch({ ], 'whitespace in media queries': [ '@media ( min-width: 980px ) {\n#page .span4 {\nwidth: 250px;\n}\n\n.row {\nmargin-left: -10px;\n}\n}', - '@media (min-width:980px){#page .span4{width:250px}.row{margin-left:-10px}}', + '@media (min-width:980px){#page .span4{width:250px}.row{margin-left:-10px}}' ], 'line breaks in media queries': [ '@media\nonly screen and (max-width: 1319px) and (min--moz-device-pixel-ratio: 1.5),\nonly screen and (max-width: 1319px) and (-moz-min-device-pixel-ratio: 1.5)\n{ a { color:#000 } }', -- 2.34.1