Skip to content

Commit 87d939d

Browse files
fix subgraphs ids
1 parent 80dbbd3 commit 87d939d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/web/server/tests/unit/with_dbs/01/test_director_v2_handlers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,13 @@ async def test_start_partial_computation(
5858
project_id: ProjectID,
5959
user_role: UserRole,
6060
expected: ExpectedResponse,
61+
faker: Faker,
6162
):
6263
assert client.app
6364

6465
url = client.app.router["start_computation"].url_for(project_id=f"{project_id}")
6566
rsp = await client.post(
66-
f"{url}", json={"subgraph": ["node_id1", "node_id2", "node_id498"]}
67+
f"{url}", json={"subgraph": [faker.uuid4(), faker.uuid4(), faker.uuid4()]}
6768
)
6869
data, error = await assert_status(
6970
rsp,

0 commit comments

Comments
 (0)