Skip to content

Commit f07de3f

Browse files
committed
fixes test
1 parent a0c3bb2 commit f07de3f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/web/server/tests/unit/isolated/test_users_models.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ def fake_profile_get(faker: Faker) -> MyProfileGet:
3333
user_name=fake_profile["username"],
3434
login=fake_profile["mail"],
3535
role="USER",
36-
privacy=MyProfilePrivacyGet(hide_fullname=True, hide_email=True),
36+
privacy=MyProfilePrivacyGet(
37+
hide_fullname=True, hide_email=True, hide_username=False
38+
),
3739
preferences={},
3840
)
3941

0 commit comments

Comments
 (0)