From: Kyr Shatskyy Date: Wed, 11 Feb 2026 14:15:21 +0000 (+0100) Subject: dispatcher/test: fix KeyError: 'owner' X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c3f7fac98053a16c13cf69e30e5c70a6568d2062;p=teuthology.git dispatcher/test: fix KeyError: 'owner' Signed-off-by: Kyr Shatskyy --- 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"