From 0dc70ca5f35ea95b9dba8c8df5a8af0085fa498f Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 18 Feb 2015 23:35:09 -0800 Subject: [PATCH] Semicolon nits. --- test/test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/test.js b/test/test.js index 10c3cd7d4..a4ad61db4 100644 --- a/test/test.js +++ b/test/test.js @@ -10802,7 +10802,7 @@ deepEqual(c(3, 5), expected); - a = _.partial(fn, ph3, 2) + a = _.partial(fn, ph3, 2); b = _.bind(a, object, 1, ph1, 4); c = _.partialRight(b, ph4, 6); @@ -10829,7 +10829,7 @@ deepEqual(c(1), expected); - a = _.partial(fn, ph3, 2) + a = _.partial(fn, ph3, 2); b = _.bind(a, object, ph1, 3); c = _.partialRight(b, ph4, 4); @@ -10987,7 +10987,7 @@ }); deepEqual(actual, [[1.1, 1.3], [0.2]]); - }) + }); }()); /*--------------------------------------------------------------------------*/ @@ -12901,7 +12901,7 @@ var expected = (isSortedIndex ? !_.isNaN(value) : _.isFinite(value)) ? 0 - : Math.min(length, MAX_ARRAY_INDEX) + : Math.min(length, MAX_ARRAY_INDEX); // Avoid false fails in older Firefox. if (array.length == length) { @@ -13345,7 +13345,7 @@ strictEqual(compiled(), "'\n\r\t\u2028\u2029\\"); var data = { 'a': 'A' }; - compiled = _.template('\'\n\r\t<%= a %>\u2028\u2029\\"') + compiled = _.template('\'\n\r\t<%= a %>\u2028\u2029\\"'); strictEqual(compiled(data), '\'\n\r\tA\u2028\u2029\\"'); });