Skip to content

Commit 8689304

Browse files
committed
Fix UPDATE_GRAPHQL_QUERY_GROUP module
1 parent 4df4f88 commit 8689304

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/infrahub/workflows/catalogue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
UPDATE_GRAPHQL_QUERY_GROUP = WorkflowDefinition(
191191
name="update_graphql_query_group",
192192
type=WorkflowType.INTERNAL,
193-
module="infrahub.graphql.tasks",
193+
module="infrahub.groups.tasks",
194194
function="update_graphql_query_group",
195195
branch_support=BranchSupportType.AWARE,
196196
)

backend/tests/unit/message_bus/operations/requests/test_graphql_query_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ async def test_graphql_group_update(db: InfrahubDatabase, httpx_mock: HTTPXMock,
6767
match_headers={"X-Infrahub-Tracker": "mutation-relationshipadd"},
6868
)
6969

70-
await update_graphql_query_group(model=model)
70+
await update_graphql_query_group.fn(model=model)

0 commit comments

Comments
 (0)