From 894d78ca6a9f534f6833b5c21c4835263b317540 Mon Sep 17 00:00:00 2001 From: Nurfog Date: Tue, 28 Apr 2026 17:46:48 -0400 Subject: [PATCH] feat: add external_sam_id field to Course struct in test cases Co-authored-by: Copilot --- shared/common/src/models.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/common/src/models.rs b/shared/common/src/models.rs index 94d2555..e182ba7 100644 --- a/shared/common/src/models.rs +++ b/shared/common/src/models.rs @@ -979,6 +979,7 @@ mod tests { course: Course { id: course_id, organization_id: Uuid::new_v4(), + external_sam_id: None, title: "Test Course".to_string(), description: None, instructor_id: Uuid::new_v4(), @@ -1020,6 +1021,7 @@ mod tests { let course_with_price = Course { id: course_id, organization_id: Uuid::new_v4(), + external_sam_id: None, title: "Test Course".to_string(), description: None, instructor_id: Uuid::new_v4(),