#124: Using toUTCString instead of toString

This commit is contained in:
Andre Rodrigues 2012-06-14 14:49:31 -07:00
Родитель 913256a71d
Коммит 4ab226f422
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -90,7 +90,7 @@ Blog.prototype.init = function () {
provider.tableClient.beginBatch();
var now = new Date().toString();
var now = new Date().toUTCString();
provider.tableClient.insertEntity(tableName, { PartitionKey: partition, RowKey: uuid(), title: 'Post one', body: 'Body one', created_at: now });
provider.tableClient.insertEntity(tableName, { PartitionKey: partition, RowKey: uuid(), title: 'Post two', body: 'Body two', created_at: now });
provider.tableClient.insertEntity(tableName, { PartitionKey: partition, RowKey: uuid(), title: 'Post three', body: 'Body three', created_at: now });
@ -103,4 +103,4 @@ Blog.prototype.init = function () {
});
};
exports.Blog = Blog;
exports.Blog = Blog;