From 42af025a5a866401a3fea59e7ec38fa47da6868e Mon Sep 17 00:00:00 2001 From: Isaac Cambron Date: Thu, 24 Jul 2014 18:33:25 -0400 Subject: [PATCH] fix jsc error --- test/moment/locale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/moment/locale.js b/test/moment/locale.js index 78ad35bc5..85b402e5b 100644 --- a/test/moment/locale.js +++ b/test/moment/locale.js @@ -220,7 +220,7 @@ exports.locale = { }, "changing the global locale doesn't affect existing duration instances" : function (test) { - var mom = moment.duration() + var mom = moment.duration(); moment.locale('fr'); test.equal('en', mom.locale()); test.done(); -- 2.47.2