Skip to content

Commit afecd8d

Browse files
committed
tests
1 parent e62814b commit afecd8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/web/server/src/simcore_service_webserver/groups/_groups_db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,6 +744,6 @@ async def auto_add_user_to_product_group(
744744
gid=product_group_id,
745745
access_rights=_DEFAULT_PRODUCT_GROUP_ACCESS_RIGHTS,
746746
)
747-
.on_conflict_do_nothing() # in case the user was already added
747+
.on_conflict_do_nothing() # in case the user was already added to this group
748748
)
749749
return product_group_id

services/web/server/tests/unit/with_dbs/04/studies_dispatcher/test_studies_dispatcher_studies_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ async def enforce_garbage_collect_guest(uid):
408408
assert data["login"] != user_email
409409

410410

411-
@pytest.mark.parametrize("number_of_simultaneous_requests", [1, 2, 64])
411+
@pytest.mark.parametrize("number_of_simultaneous_requests", [1, 2, 32])
412412
async def test_guest_user_is_not_garbage_collected(
413413
number_of_simultaneous_requests: int,
414414
web_server: TestServer,

0 commit comments

Comments
 (0)