Skip to content

Commit

Permalink
Fix patch order
Browse files Browse the repository at this point in the history
  • Loading branch information
chezou committed Feb 3, 2025
1 parent 7717990 commit 42028f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/models/test_pure_svd.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ def test_from_config(self, mocker: MockerFixture, use_gpu: bool) -> None:
def test_get_config(
self, mocker: MockerFixture, random_state: tp.Optional[int], simple_types: bool, use_gpu: bool
) -> None:
mocker.patch("rectools.models.pure_svd.cp.cuda.is_available", return_value=True)
mocker.patch("rectools.models.pure_svd.cp", return_value=True)
mocker.patch("rectools.models.pure_svd.cp.cuda.is_available", return_value=True)
model = PureSVDModel(
factors=100,
tol=1.0,
Expand Down

0 comments on commit 42028f2

Please sign in to comment.