Skip to content

Commit 5ad2433

Browse files
committed
remove hidden unicode combinator from the tick symbol
weird... fixes #5
1 parent d852c5c commit 5ad2433

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var platform = process.platform;
33

44
var main = {
5-
tick: '✔',
5+
tick: '✔',
66
cross: '✖',
77
star: '★',
88
square: '▇',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"fallback"
3333
],
3434
"devDependencies": {
35-
"ava": "0.0.3"
35+
"ava": "0.0.4"
3636
}
3737
}

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ console.log(' ' + Object.keys(figures).map(function (el) {
77
}).join(' ') + '\n');
88

99
test('returns a figure', function (t) {
10-
t.assert(figures.tick === '✔' || figures.tick === '√');
10+
t.assert(figures.tick === '✔' || figures.tick === '√');
1111
});

0 commit comments

Comments
 (0)