diff --git a/tests/config_auth_app_state_connectivity_e2e.rs b/tests/config_auth_app_state_connectivity_e2e.rs index e96b0e7102..a8ba69ba5d 100644 --- a/tests/config_auth_app_state_connectivity_e2e.rs +++ b/tests/config_auth_app_state_connectivity_e2e.rs @@ -2804,7 +2804,6 @@ async fn worker_a_controller_schemas_are_fully_exposed() { "openhuman.config_get_dashboard_settings", "openhuman.config_get_data_paths", "openhuman.config_get_dictation_settings", - "openhuman.config_get_meet_settings", "openhuman.config_get_memory_sync_settings", "openhuman.config_get_onboarding_completed", "openhuman.config_get_privacy_mode", @@ -2828,7 +2827,6 @@ async fn worker_a_controller_schemas_are_fully_exposed() { "openhuman.config_update_composio_trigger_settings", "openhuman.config_update_dictation_settings", "openhuman.config_update_local_ai_settings", - "openhuman.config_update_meet_settings", "openhuman.config_update_memory_settings", "openhuman.config_update_memory_sync_settings", "openhuman.config_update_model_settings", @@ -3281,30 +3279,6 @@ async fn config_runtime_flags_settings_readbacks_and_validation_paths_are_exerci Some(false) ); - ok( - &rpc( - &harness.rpc_base, - 11_006, - "openhuman.config_update_meet_settings", - json!({ "auto_orchestrator_handoff": true }), - ) - .await, - "update_meet_settings true", - ); - let meet = rpc( - &harness.rpc_base, - 11_007, - "openhuman.config_get_meet_settings", - json!({}), - ) - .await; - assert_eq!( - payload(&meet, "get_meet_settings") - .get("auto_orchestrator_handoff") - .and_then(Value::as_bool), - Some(true) - ); - let onboarding_before = rpc( &harness.rpc_base, 11_008, diff --git a/tests/domain_modules_e2e.rs b/tests/domain_modules_e2e.rs index 7d27792502..8fb5da4e45 100644 --- a/tests/domain_modules_e2e.rs +++ b/tests/domain_modules_e2e.rs @@ -362,28 +362,6 @@ async fn config_agent_tools_and_threads_mutation_paths_round_trip() { Some(false) ); - let meet = rpc( - &harness.rpc_base, - 30_005, - "openhuman.config_update_meet_settings", - json!({ "auto_orchestrator_handoff": true }), - ) - .await; - ok(&meet, "update_meet_settings"); - let meet_get = rpc( - &harness.rpc_base, - 30_006, - "openhuman.config_get_meet_settings", - json!({}), - ) - .await; - assert_eq!( - payload(&meet_get, "get_meet_settings") - .get("auto_orchestrator_handoff") - .and_then(Value::as_bool), - Some(true) - ); - let dictation = rpc( &harness.rpc_base, 30_007,