Skip to content

Commit c4b8ae9

Browse files
fix rand argument order in tests
1 parent fe6e2d5 commit c4b8ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/arithmetic.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ end
1313
L = ["yes", "no"]
1414
d1 = UnivariateFinite(L, rand(rng, 2), pool=missing)
1515
d2 = UnivariateFinite(L, rand(rng, 2), pool=missing)
16-
df32 = UnivariateFinite(L, rand(Float32, rng, 2), pool=missing)
16+
df32 = UnivariateFinite(L, rand(rng, Float32, 2), pool=missing)
1717

1818
@testset "arithmetic" begin
1919

0 commit comments

Comments
 (0)