Skip to content

Commit 44eb4b5

Browse files
committed
sub_results must be DataFrame
1 parent 0a5d729 commit 44eb4b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/outputs.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ include(joinpath(TESTDIR, "testutils.jl"))
8585
@test tmle["EFFECT_SIZE"] == "Failed"
8686

8787
# Check subsetted results & optional QQplot generation
88-
sub_results = results[1,:]
89-
qqplot(joinpath(tmpdir, "Non_existent_QQ.png"), sub_results)
90-
@test !isfile(tmpdir, "Non_existent_QQ.png")
88+
sub_results = results[1:1, :]
89+
TargeneCore.qqplot(TargeneCore.make_filepath_from_prefix(tmpdir; filename = "Non_existent_QQ.png"), sub_results)
90+
@test !isfile(joinpath(tmpdir, "Non_existent_QQ.png"))
9191
end
9292

9393
end

0 commit comments

Comments
 (0)