From: Maxime Guerreiro Date: Tue, 24 Apr 2018 23:56:56 +0000 (+0200) Subject: [misc] Fix "the the" typo in test (#4578) X-Git-Tag: 2.22.2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=245e5fc23f5a05f644b8124a9bd982d37f5387e2;p=thirdparty%2Fmoment.git [misc] Fix "the the" typo in test (#4578) --- diff --git a/src/test/moment/start_end_of.js b/src/test/moment/start_end_of.js index 519c7641e..4b47620d6 100644 --- a/src/test/moment/start_end_of.js +++ b/src/test/moment/start_end_of.js @@ -289,7 +289,7 @@ test('start of second', function (assert) { assert.equal(m.date(), 2, 'keep the day'); assert.equal(m.hours(), 3, 'keep the hours'); assert.equal(m.minutes(), 4, 'keep the minutes'); - assert.equal(m.seconds(), 5, 'keep the the seconds'); + assert.equal(m.seconds(), 5, 'keep the seconds'); assert.equal(m.milliseconds(), 0, 'strip out the milliseconds'); });