Skip to content

Commit

Permalink
Fix erroneous !
Browse files Browse the repository at this point in the history
  • Loading branch information
quildtide committed Sep 4, 2024
1 parent 1f7e28a commit 0746991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testutils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function test_samples(s::Sampleable{Univariate, Discrete}, # the sampleable
Random.seed!(1234)
samples2 = rand(s, n)
Random.seed!(1234)
samples3 = map!((_) -> rand(s), 1:n)
samples3 = map((_) -> rand(s), 1:n)
Random.seed!(1234)
samples4 = map((_) -> rand(s), 1:n)
else
Expand Down Expand Up @@ -273,7 +273,7 @@ function test_samples(s::Sampleable{Univariate, Continuous}, # the sampleable
Random.seed!(1234)
samples2 = rand(s, n)
Random.seed!(1234)
samples3 = map!((_) -> rand(s), 1:n)
samples3 = map((_) -> rand(s), 1:n)
Random.seed!(1234)
samples4 = map((_) -> rand(s), 1:n)
else
Expand Down

0 comments on commit 0746991

Please sign in to comment.