Skip to content

Commit fb1bd10

Browse files
committed
fixed types
1 parent 627e588 commit fb1bd10

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

services/web/server/tests/unit/with_dbs/02/test_projects_states_handlers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ async def _close_project(
200200
async def _state_project(
201201
client: TestClient,
202202
project: dict,
203-
expected: HTTPStatus,
203+
expected: int,
204204
expected_project_state: ProjectState,
205205
):
206206
assert client.app
@@ -209,7 +209,6 @@ async def _state_project(
209209
resp = await client.get(f"{url}")
210210
data, error = await assert_status(resp, expected)
211211
if not error:
212-
# the project is locked
213212
received_state = ProjectState(**data)
214213
assert received_state == expected_project_state
215214

0 commit comments

Comments
 (0)