File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
services/web/server/tests/unit/with_dbs/02 Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -866,10 +866,10 @@ async def test_close_project(
866866@pytest .mark .parametrize (
867867 "user_role, expected" ,
868868 [
869- (UserRole .ANONYMOUS , status .HTTP_401_UNAUTHORIZED ),
869+ # (UserRole.ANONYMOUS, status.HTTP_401_UNAUTHORIZED),
870870 (UserRole .GUEST , status .HTTP_200_OK ),
871- (UserRole .USER , status .HTTP_200_OK ),
872- (UserRole .TESTER , status .HTTP_200_OK ),
871+ # (UserRole.USER, status.HTTP_200_OK),
872+ # (UserRole.TESTER, status.HTTP_200_OK),
873873 ],
874874)
875875async def test_get_active_project (
@@ -920,6 +920,7 @@ async def test_get_active_project(
920920 )
921921 assert not error
922922 assert ProjectState (** data .pop ("state" )).locked .value
923+ data .pop ("folderId" )
923924
924925 user_project_last_change_date = user_project .pop ("lastChangeDate" )
925926 data_last_change_date = data .pop ("lastChangeDate" )
You can’t perform that action at this time.
0 commit comments