From: XhmikosR Date: Thu, 30 Apr 2015 06:55:04 +0000 (+0300) Subject: phantom.js: switch to unicode characters that work on Windows too. X-Git-Tag: v3.3.5~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2f81ceb57145ea7c36a603da82d47e7c61bfcad;p=thirdparty%2Fbootstrap.git phantom.js: switch to unicode characters that work on Windows too. --- 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) })