From c3f7fac98053a16c13cf69e30e5c70a6568d2062 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Wed, 11 Feb 2026 15:15:21 +0100 Subject: [PATCH] dispatcher/test: fix KeyError: 'owner' Signed-off-by: Kyr Shatskyy --- teuthology/dispatcher/test/test_supervisor.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/teuthology/dispatcher/test/test_supervisor.py b/teuthology/dispatcher/test/test_supervisor.py index 2b422c07b..784f3f3d4 100644 --- a/teuthology/dispatcher/test/test_supervisor.py +++ b/teuthology/dispatcher/test/test_supervisor.py @@ -89,7 +89,8 @@ class TestSuperviser(object): "name": "the_name", "job_id": "1", "archive_path": "archive/path", - "teuthology_branch": "main" + "teuthology_branch": "main", + "owner": "the_owner", } process = Mock() process.poll.return_value = "not None" @@ -107,7 +108,8 @@ class TestSuperviser(object): "name": "the_name", "job_id": "1", "archive_path": "archive/path", - "teuthology_branch": "jewel" + "teuthology_branch": "jewel", + "owner": "the_owner", } process = Mock() process.poll.return_value = "not None" -- 2.47.3