Skip to content

Commit c66c520

Browse files
committed
fixes tests
1 parent 174e9c3 commit c66c520

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ async def test_dispatch_study_anonymously(
424424

425425
data, _ = await assert_status(response, status.HTTP_200_OK)
426426
assert data["login"].endswith("guest-at-osparc.io")
427-
assert data["gravatar_id"]
428427
assert data["role"].upper() == UserRole.GUEST.name
429428

430429
# guest user only a copy of the template project

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ async def test_access_study_anonymously(
282282

283283
data, _ = await assert_status(resp, status.HTTP_200_OK)
284284
assert data["login"].endswith("guest-at-osparc.io")
285-
assert data["gravatar_id"]
286285
assert data["role"].upper() == UserRole.GUEST.name
287286

288287
# guest user only a copy of the template project
@@ -448,7 +447,6 @@ async def _test_guest_user_workflow(request_index):
448447

449448
data, _ = await assert_status(resp, status.HTTP_200_OK)
450449
assert data["login"].endswith("guest-at-osparc.io")
451-
assert data["gravatar_id"]
452450
assert data["role"].upper() == UserRole.GUEST.name
453451

454452
# guest user only a copy of the template project

0 commit comments

Comments
 (0)