Skip to content

Commit 1066e65

Browse files
committed
Fix tests for 32-bit
1 parent e6b892b commit 1066e65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parse_tests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,8 @@ end
402402
end
403403

404404
@test Parsers.xparse(FixedDecimal{Int,8}, "2", groupmark=',', delim=',', decimal='.', quoted=true).val == FixedDecimal{Int,8}(2)
405-
@test Parsers.xparse(FixedDecimal{Int,8}, "\" 2000.0 \"", groupmark=',', delim=',', decimal='.', quoted=true).val == FixedDecimal{Int,8}(2000)
406-
@test Parsers.xparse(FixedDecimal{Int,8}, "\" 2,000.0 \"", groupmark=',', delim=',', decimal='.', quoted=true).val == FixedDecimal{Int,8}(2000)
405+
@test Parsers.xparse(FixedDecimal{Int,4}, "\" 2000.0 \"", groupmark=',', delim=',', decimal='.', quoted=true).val == FixedDecimal{Int,4}(2000)
406+
@test Parsers.xparse(FixedDecimal{Int,4}, "\" 2,000.0 \"", groupmark=',', delim=',', decimal='.', quoted=true).val == FixedDecimal{Int,4}(2000)
407407
end
408408

409409
@testset "misc options" begin

0 commit comments

Comments
 (0)