Skip to content

Commit db34d60

Browse files
committed
add in missing begin's
1 parent 292b462 commit db34d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/missing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ slp[1,:U] = missing
2222
# end
2323

2424
@testset "Missing Omit" begin
25-
@testset "Missing from unused variables"
25+
@testset "Missing from unused variables" begin
2626
# missing from unused variables should have no impact
2727
m1 = fit(MixedModel, @formula(Y ~ 1 + (1|G)), dat[:sleepstudy])
2828
m1_missing = fit(MixedModel, @formula(Y ~ 1 + (1|G)), slp)
2929
@test isapprox(m1.θ, m1_missing.θ, rtol=1.0e-12)
3030
end
3131

32-
@testset "Missing from used variables"
32+
@testset "Missing from used variables" begin
3333
m1 = fit(MixedModel, @formula(Y ~ 1 + U + (1|G)), dat[:sleepstudy])
3434
m1_missing = fit(MixedModel, @formula(Y ~ 1 + U + (1|G)), slp)
3535
@test nobs(m1) - nobs(m1_missing) == 1

0 commit comments

Comments
 (0)