Mode_Redis: fixed date difference logging

This commit is contained in:
gstamac
2013-08-23 13:48:36 +02:00
parent 844b0298b2
commit a5172bd3b0

View File

@@ -1802,7 +1802,7 @@ run_next_test = function run_next_test() {
test_count += 1;
tests[test_name]();
} else {
console.log('\n completed \x1b[32m%d\x1b[0m tests in \x1b[33m%d\x1b[0m ms\n', test_count, new Date() - all_start);
console.log('\n completed \x1b[32m%d\x1b[0m tests in \x1b[33m%d\x1b[0m ms\n', test_count, Date.now() - all_start);
client.quit();
client2.quit();
}