Skip to content

Commit

Permalink
Update test_tools.py
Browse files Browse the repository at this point in the history
  • Loading branch information
oualib committed Nov 8, 2023
1 parent f7173c7 commit 769507c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verticapy/tests/vModel/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test__is_already_stored(self, titanic_vd):
model.fit(titanic_vd, ["age", "fare"], "survived")
assert model._is_already_stored()
assert (
model._is_already_stored(return_model_type=True).lower()
model._is_already_stored(return_model_type=True)[1].lower()
== "linear_regression"
)
model.drop()
Expand Down

0 comments on commit 769507c

Please sign in to comment.