From f8f549d779a08b5d782bdf9d1580a11b79f69766 Mon Sep 17 00:00:00 2001 From: Bede Carroll Date: Fri, 13 Mar 2026 23:18:27 -0700 Subject: [PATCH] test(core): fix mach service ordering expectations Co-authored-by: Codex --- codex-rs/core/src/sandboxing/macos_permissions_tests.rs | 2 +- codex-rs/core/src/sandboxing/mod_tests.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/src/sandboxing/macos_permissions_tests.rs b/codex-rs/core/src/sandboxing/macos_permissions_tests.rs index 832473518e..80563c888b 100644 --- a/codex-rs/core/src/sandboxing/macos_permissions_tests.rs +++ b/codex-rs/core/src/sandboxing/macos_permissions_tests.rs @@ -53,8 +53,8 @@ fn merge_extensions_widens_permissions() { "com.apple.Notes".to_string(), ]), macos_mach_services: vec![ - "com.vendor.helper".to_string(), "com.apple.logd".to_string(), + "com.vendor.helper".to_string(), ], macos_launch_services: true, macos_accessibility: true, diff --git a/codex-rs/core/src/sandboxing/mod_tests.rs b/codex-rs/core/src/sandboxing/mod_tests.rs index ae8d01e206..c4fa61d78e 100644 --- a/codex-rs/core/src/sandboxing/mod_tests.rs +++ b/codex-rs/core/src/sandboxing/mod_tests.rs @@ -425,8 +425,8 @@ fn effective_permissions_merge_macos_extensions_with_additional_permissions() { "com.apple.Notes".to_string(), ]), macos_mach_services: vec![ - "com.vendor.helper".to_string(), "com.apple.logd".to_string(), + "com.vendor.helper".to_string(), ], macos_launch_services: true, macos_accessibility: true,