From 8897d255f2567aecdf780d94c3f45ee719c9ace8 Mon Sep 17 00:00:00 2001 From: Iskren Chernev Date: Thu, 3 Jul 2014 00:37:13 -0700 Subject: [PATCH] Improve comments in a few tests --- test/moment/zone_switching.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); -- 2.47.3