From 563a2c663f37917b219514edc33a9bb08510c21d Mon Sep 17 00:00:00 2001 From: bigmstone Date: Thu, 20 Jul 2017 15:35:36 -0500 Subject: [PATCH] Removing UTC from string --- tests/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/util.js b/tests/util.js index 1b522870a..93ba62f04 100644 --- a/tests/util.js +++ b/tests/util.js @@ -67,7 +67,7 @@ module.exports = function (browser) { return str.charAt(0).toUpperCase() + str.slice(1); }, formatUTC: function (date) { - return new Date(date).toUTCString().replace('GMT', 'UTC'); + return new Date(date).toUTCString().replace('GMT', ''); }, name: function (name) { return new TestMarker(name);