File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 150
150
# issue #120
151
151
for T in generate_fixedpoint_types (:Fixed )
152
152
T_ints = T .(clamp .(rand (rawtype (T), 500 , 500 ),
153
- ceil (BigInt , floattype (T)(typemin (T))),
154
- floor (BigInt , floattype (T)(typemax (T)))))
153
+ ceil (rawtype (T) , floattype (T)(typemin (T))),
154
+ floor (rawtype (T) , floattype (T)(typemax (T)))))
155
155
@test all (isinteger .(T_ints))
156
156
end
157
157
end
Original file line number Diff line number Diff line change 349
349
# issue #120
350
350
for T in generate_fixedpoint_types (:Normed )
351
351
T_ints = T .(clamp .(rand (rawtype (T), 500 , 500 ),
352
- ceil (BigInt , floattype (T)(typemin (T))),
353
- floor (BigInt , floattype (T)(typemax (T)))))
352
+ ceil (rawtype (T) , floattype (T)(typemin (T))),
353
+ floor (rawtype (T) , floattype (T)(typemax (T)))))
354
354
@test all (isinteger .(T_ints))
355
355
end
356
356
end
You can’t perform that action at this time.
0 commit comments