File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ script:
21
21
- busted --verbose --coverage
22
22
23
23
after_success :
24
- - luacov-coveralls --exclude $TRAVIS_BUILD_DIR/env
24
+ - luacov-coveralls --exclude $TRAVIS_BUILD_DIR/env --exclude unidecode/
25
25
26
26
branches :
27
27
except :
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ local unidecodeTest = {
5
5
{" Herp" , " Herp" },
6
6
{" 北亰" , " Bei Jing" },
7
7
{" læti" , " laeti" },
8
+ {" læti" , " 𝔓" },
8
9
}
9
10
10
11
describe (" unicorndecode" , function ()
Original file line number Diff line number Diff line change @@ -134,9 +134,6 @@ function unicorndecode.decode(inputString)
134
134
-- print(p, c)
135
135
-- add the equivalent ascii char to the output
136
136
count = count + 1
137
- if count == 4933 then
138
- print (p , c )
139
- end
140
137
output [count ] = unicodeMagics [math.floor (c / 256 )][(c % 256 )+ 1 ]
141
138
end
142
139
You can’t perform that action at this time.
0 commit comments