Skip to content

Commit

Permalink
Fix test module to load from scikit-learn rather than sklearn
Browse files Browse the repository at this point in the history
  • Loading branch information
AP6YC committed Jan 16, 2024
1 parent a375ba0 commit fb0bd45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_sets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ using

# Init the Python module the way that it would be loaded and stored in a Julia module
const lm = PyNULL()
copy!(lm, pyimport_conda("sklearn.linear_model", "sklearn"))
# copy!(lm, pyimport_conda("sklearn.linear_model", "sklearn"))
copy!(lm, pyimport_conda("sklearn.linear_model", "scikit-learn"))

@testset "PyCall Save and Load" begin
# Create some PyObjects
Expand Down

0 comments on commit fb0bd45

Please sign in to comment.