Skip to content

Commit 581169b

Browse files
committed
Fix issue in the SDK
1 parent 5121d35 commit 581169b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/tests/integration/proposed_change/test_proposed_change_conflict.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,11 @@ async def test_happy_pipeline(self, db: InfrahubDatabase, happy_data_branch: str
282282
secondary_events = await client.execute_graphql(
283283
query=QUERY_EVENT, variables={"parent__ids": merge_event_id}
284284
)
285-
if secondary_events["InfrahubEvent"]["count"] >= 2:
285+
if secondary_events["InfrahubEvent"]["count"] >= 3:
286286
break
287287
await asyncio.sleep(1)
288288

289-
assert secondary_events["InfrahubEvent"]["count"] >= 2
289+
assert secondary_events["InfrahubEvent"]["count"] >= 3
290290

291291
johns_events = [
292292
event

python_sdk

0 commit comments

Comments
 (0)