From: Nicholas Bollweg Date: Wed, 14 Aug 2013 18:21:52 +0000 (-0400) Subject: jslint must be appeased... again... again X-Git-Tag: 2.3.0~10^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d6d0ea3ddfb94f8ea8dd27b746ff7ac9d88212e;p=thirdparty%2Fmoment.git jslint must be appeased... again... again --- diff --git a/test/moment/duration.js b/test/moment/duration.js index c0457659a..0294de4fa 100644 --- a/test/moment/duration.js +++ b/test/moment/duration.js @@ -215,7 +215,7 @@ exports.duration = { test.equal(moment.duration({M: -1}).toIsoString(), "-P1M", "one month ago"); test.equal(moment.duration({m: -1}).toIsoString(), "-PT1M", "one minute ago"); test.equal(moment.duration({s: -1}).toIsoString(), "-PT0.5S", "one half second ago"); - test.equal(moment.duration({y: -0.5, M: 1}).toIsoString() , "-P5M", "a month after half a year ago"); + test.equal(moment.duration({y: -0.5, M: 1}).toIsoString(), "-P5M", "a month after half a year ago"); test.done(); },