From b3052d47db2929ee671583b27a92090567c5ea14 Mon Sep 17 00:00:00 2001 From: Itamar Zand <133867530+ItamarZand88@users.noreply.github.com> Date: Tue, 18 Aug 2026 00:59:55 +0300 Subject: [PATCH] test(sdk): use a deployment id the schema pattern accepts The reconcile round-trip test used a 24-character id, and the platform spec pins deployment ids to 28, so the request never deserialized and the test failed on main. --- client-sdks/platform/rust/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-sdks/platform/rust/src/lib.rs b/client-sdks/platform/rust/src/lib.rs index 1fcf39d33..792e0ae6f 100644 --- a/client-sdks/platform/rust/src/lib.rs +++ b/client-sdks/platform/rust/src/lib.rs @@ -379,7 +379,7 @@ mod tests { }); let request = serde_json::json!({ - "deploymentId": "dep_0c29fq4a2yjb7kx3smwdgxlc", + "deploymentId": "dep_0c29fq4a2yjb7kx3smwdgxlcm2q8", "state": state }); let sdk_request: types::SyncReconcileRequest =