From 5ee3154f8efd3f95eaa3b9c1ef065abbea146763 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 7 Feb 2026 20:19:00 +0300 Subject: [PATCH] queue-runner: update tests Signed-off-by: NotAShelf Change-Id: If15433609cb601119e77c35ff73041196a6a6964 --- crates/queue-runner/tests/runner_tests.rs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/crates/queue-runner/tests/runner_tests.rs b/crates/queue-runner/tests/runner_tests.rs index 652b9de..659d037 100644 --- a/crates/queue-runner/tests/runner_tests.rs +++ b/crates/queue-runner/tests/runner_tests.rs @@ -151,8 +151,12 @@ async fn test_atomic_build_claiming() { let eval = fc_common::repo::evaluations::create( &pool, fc_common::models::CreateEvaluation { - jobset_id: jobset.id, - commit_hash: "abcdef1234567890abcdef1234567890abcdef12".to_string(), + jobset_id: jobset.id, + commit_hash: "abcdef1234567890abcdef1234567890abcdef12".to_string(), + pr_number: None, + pr_head_branch: None, + pr_base_branch: None, + pr_action: None, }, ) .await @@ -238,8 +242,12 @@ async fn test_orphan_build_reset() { let eval = fc_common::repo::evaluations::create( &pool, fc_common::models::CreateEvaluation { - jobset_id: jobset.id, - commit_hash: "1234567890abcdef1234567890abcdef12345678".to_string(), + jobset_id: jobset.id, + commit_hash: "1234567890abcdef1234567890abcdef12345678".to_string(), + pr_number: None, + pr_head_branch: None, + pr_base_branch: None, + pr_action: None, }, ) .await