We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d10189 commit e0eee41Copy full SHA for e0eee41
packages/postgres-database/tests/test_comp_tasks.py
@@ -152,8 +152,8 @@ async def test_listen_query(
152
for n, output in enumerate(update_outputs):
153
assert output
154
assert tasks[n]["changes"] == ["modified", "outputs"]
155
- assert tasks[0]["action"] == "UPDATE"
156
- assert tasks[0]["table"] == "comp_tasks"
157
- assert tasks[0]["task_id"] == task["task_id"]
158
- assert tasks[0]["project_id"] == task["project_id"]
159
- assert tasks[0]["node_id"] == task["node_id"]
+ assert tasks[n]["action"] == "UPDATE"
+ assert tasks[n]["table"] == "comp_tasks"
+ assert tasks[n]["task_id"] == task["task_id"]
+ assert tasks[n]["project_id"] == task["project_id"]
+ assert tasks[n]["node_id"] == task["node_id"]
0 commit comments