Skip to content

Commit

Permalink
Removing UTC from string
Browse files Browse the repository at this point in the history
  • Loading branch information
bigmstone committed Jul 20, 2017
1 parent aab3545 commit 563a2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/util.js
Expand Up @@ -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);
Expand Down

0 comments on commit 563a2c6

Please sign in to comment.