From a2f81ceb57145ea7c36a603da82d47e7c61bfcad Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 30 Apr 2015 09:55:04 +0300 Subject: [PATCH] phantom.js: switch to unicode characters that work on Windows too. --- js/tests/unit/phantom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js index f6f0ac00fd..3ed3b3ea37 100644 --- a/js/tests/unit/phantom.js +++ b/js/tests/unit/phantom.js @@ -52,9 +52,9 @@ QUnit.moduleDone(function (obj) { if (obj.failed === 0) { - console.log('\r\u2714 All tests passed in "' + obj.name + '" module') + console.log('\r\u221A All tests passed in "' + obj.name + '" module') } else { - console.log('\u2716 ' + obj.failed + ' tests failed in "' + obj.name + '" module') + console.log('\u00D7 ' + obj.failed + ' tests failed in "' + obj.name + '" module') } sendMessage('qunit.moduleDone', obj.name, obj.failed, obj.passed, obj.total) })