From 58b7e1400e0a8bf17fabdc2844dad1eb4e17e727 Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Thu, 5 Mar 2026 02:20:41 -0800 Subject: [PATCH] codex: fix Bazel for notify capture helper (#13534) --- codex-rs/app-server/tests/common/Cargo.toml | 2 +- .../app-server/tests/common/{ => src/bin}/notify_capture.rs | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename codex-rs/app-server/tests/common/{ => src/bin}/notify_capture.rs (100%) diff --git a/codex-rs/app-server/tests/common/Cargo.toml b/codex-rs/app-server/tests/common/Cargo.toml index 12aeb95f47..ace6d2b467 100644 --- a/codex-rs/app-server/tests/common/Cargo.toml +++ b/codex-rs/app-server/tests/common/Cargo.toml @@ -9,7 +9,7 @@ path = "lib.rs" [[bin]] name = "codex-app-server-test-notify-capture" -path = "notify_capture.rs" +path = "src/bin/notify_capture.rs" [dependencies] anyhow = { workspace = true } diff --git a/codex-rs/app-server/tests/common/notify_capture.rs b/codex-rs/app-server/tests/common/src/bin/notify_capture.rs similarity index 100% rename from codex-rs/app-server/tests/common/notify_capture.rs rename to codex-rs/app-server/tests/common/src/bin/notify_capture.rs