codex: fix sandbox argument lint on PR #15329

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-03-20 18:43:50 +00:00
parent 595c1f6245
commit 877678189f

View File

@@ -137,8 +137,12 @@ fn resolve_windows_sandbox_private_desktop_prefers_profile_windows() {
#[test]
fn resolve_windows_sandbox_private_desktop_defaults_to_true() {
let profile_private_desktop = None;
let cfg_private_desktop = None;
assert!(resolve_windows_sandbox_private_desktop(
/*profile_private_desktop*/ None, /*cfg_private_desktop*/ None,
profile_private_desktop,
cfg_private_desktop,
));
}