fix: enable resume_warning that was missing from mod.rs (#8333)

This test was introduced in https://github.com/openai/codex/pull/6507,
but was not included in `mod.rs`. It does not appear that it was getting
compiled?
This commit is contained in:
Michael Bolin 2025-12-19 11:21:47 -08:00 committed by GitHub
parent 7e5c343ef5
commit 0a7021de72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View file

@ -43,6 +43,7 @@ mod quota_exceeded;
mod read_file;
mod remote_models;
mod resume;
mod resume_warning;
mod review;
mod rmcp_client;
mod rollout_list_find;

View file

@ -4,7 +4,6 @@ use codex_core::AuthManager;
use codex_core::CodexAuth;
use codex_core::ConversationManager;
use codex_core::NewConversation;
use codex_core::built_in_model_providers;
use codex_core::protocol::EventMsg;
use codex_core::protocol::InitialHistory;
use codex_core::protocol::ResumedHistory;