Skip to content

Commit 3fb8341

Browse files
committed
fix error after 8dc172f
1 parent e267baf commit 3fb8341

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

skore/tests/unit/test_login.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def load(self):
2020

2121
def test_login_local(monkeypatch, FakeLogin):
2222
monkeypatch.setattr(
23-
"skore.entry_points",
23+
"skore._login.entry_points",
2424
lambda **kwargs: EntryPoints(
2525
[
2626
FakeEntryPoint(
@@ -41,7 +41,7 @@ def test_login_local(monkeypatch, FakeLogin):
4141

4242
def test_login_hub(monkeypatch, FakeLogin):
4343
monkeypatch.setattr(
44-
"skore.entry_points",
44+
"skore._login.entry_points",
4545
lambda **kwargs: EntryPoints(
4646
[
4747
FakeEntryPoint(
@@ -63,7 +63,7 @@ def test_login_hub(monkeypatch, FakeLogin):
6363

6464

6565
def test_login_hub_without_plugin(monkeypatch):
66-
monkeypatch.setattr("skore.entry_points", lambda **kwargs: EntryPoints([]))
66+
monkeypatch.setattr("skore._login.entry_points", lambda **kwargs: EntryPoints([]))
6767

6868
from skore import login
6969

0 commit comments

Comments
 (0)