mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-10 21:33:16 +00:00
Fix currency parsing Test when "." isn't a seperator in local culture
This commit is contained in:
@@ -165,8 +165,8 @@ Describe ExportExcel {
|
|||||||
StrNegInt = '-31'
|
StrNegInt = '-31'
|
||||||
StrTrailingNeg = '31-'
|
StrTrailingNeg = '31-'
|
||||||
StrParens = '(123)'
|
StrParens = '(123)'
|
||||||
strLocalCurrency = ('{0}123.45' -f (Get-Culture).NumberFormat.CurrencySymbol )
|
strLocalCurrency = ('{0}123{1}45' -f (Get-Culture).NumberFormat.CurrencySymbol,(Get-Culture).NumberFormat.CurrencyDecimalSeparator)
|
||||||
strOtherCurrency = ('{0}123.45' -f $OtherCurrencySymbol )
|
strOtherCurrency = ('{0}123{1}45' -f $OtherCurrencySymbol ,(Get-Culture).NumberFormat.CurrencyDecimalSeparator)
|
||||||
StrE164Phone = '+32 (444) 444 4444'
|
StrE164Phone = '+32 (444) 444 4444'
|
||||||
StrAltPhone1 = '+32 4 4444 444'
|
StrAltPhone1 = '+32 4 4444 444'
|
||||||
StrAltPhone2 = '+3244444444'
|
StrAltPhone2 = '+3244444444'
|
||||||
|
|||||||
Reference in New Issue
Block a user