From: Iskren Chernev Date: Thu, 3 Jul 2014 07:37:13 +0000 (-0700) Subject: Improve comments in a few tests X-Git-Tag: 2.8.0~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8897d255f2567aecdf780d94c3f45ee719c9ace8;p=thirdparty%2Fmoment.git Improve comments in a few tests --- diff --git a/test/moment/zone_switching.js b/test/moment/zone_switching.js index f72cf8c56..43797aa93 100644 --- a/test/moment/zone_switching.js +++ b/test/moment/zone_switching.js @@ -88,7 +88,7 @@ exports.zoneSwitching = { m.zone(z * 60); test.equal(m.clone().local(true).format(fmt), m.format(fmt), - "zone(" + z + ":00) to local failed to keep the local time"); + "zone(" + z + ":00) to local failed to keep local time"); } test.done(); @@ -105,9 +105,9 @@ exports.zoneSwitching = { m.zone(z * 60); test.equal(m.clone().local(false).valueOf(), m.valueOf(), - "zone(" + z + ":00) to local failed to keep the local time (explicit)"); + "zone(" + z + ":00) to local failed to keep utc time (explicit)"); test.equal(m.clone().local().valueOf(), m.valueOf(), - "zone(" + z + ":00) to local failed to keep the local time (implicit)"); + "zone(" + z + ":00) to local failed to keep utc time (implicit)"); } test.done();