Skip to content

Commit 58ab4e0

Browse files
jacekkAndreas Pizsa
authored andcommitted
chore: fixed decimal separator in tests for Estonia (#32)
1 parent a4bddc0 commit 58ab4e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parse-decimal-number-test.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ localSeparators = [
1010
{thousands:' ', decimal:','} # 1 234,56 -- French
1111
{thousands:',', decimal:'/'} # 1,234/56 -- Persian (Iran)
1212
{thousands:' ', decimal:'-'} # 1 234-56 -- Kazakhstan
13-
{thousands:' ', decimal:' '} # 1 234.56 -- Estonia
13+
{thousands:' ', decimal:'.'} # 1 234.56 -- Estonia
1414
]
1515

1616
buildNumber = (max,doFraction,separators)->

0 commit comments

Comments
 (0)