Skip to content

Commit 360d09b

Browse files
committed
Fix the 64-bits for the test
1 parent 21b41a2 commit 360d09b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/FixedDecimal.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,10 @@ end
254254
end
255255

256256
@testset "128-bit conversion correctness" begin
257+
# Force the bits for these tests
258+
FD2 = FixedDecimal{Int64, 2}
259+
UFD2 = FixedDecimal{UInt64, 2}
260+
257261
@testset "Convert from 64-bit to 128-bit" begin
258262
@test convert(WFD2, 1).i === Int128(100)
259263
@test convert(UWFD2, 1).i === UInt128(100)

0 commit comments

Comments
 (0)