Skip to content

Commit 092d8b6

Browse files
committed
fix(tests): add missing test imports for session/prompt history features
Add missing imports to test module: - PromptHistoryEntry, render_prompt_history_report, parse_history_count - parse_export_args, render_session_markdown - summarize_tool_payload_for_markdown, short_tool_id Fixes test compilation errors introduced by new session and export features from batch 5/6 work.
1 parent b3ccd92 commit 092d8b6

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

  • rust/crates/rusty-claude-cli/src

rust/crates/rusty-claude-cli/src/main.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7696,12 +7696,13 @@ mod tests {
76967696
print_help_to, push_output_block, render_config_report, render_diff_report,
76977697
render_diff_report_for, render_memory_report, render_repl_help, render_resume_usage,
76987698
resolve_model_alias, resolve_model_alias_with_config, resolve_repl_model,
7699-
resolve_session_reference, response_to_events,
7700-
resume_supported_slash_commands, run_resume_command,
7701-
slash_command_completion_candidates_with_sessions, status_context, validate_no_args,
7702-
write_mcp_server_fixture, CliAction, CliOutputFormat, CliToolExecutor, GitWorkspaceSummary,
7703-
InternalPromptProgressEvent, InternalPromptProgressState, LiveCli, LocalHelpTopic,
7704-
SlashCommand, StatusUsage, DEFAULT_MODEL, LATEST_SESSION_REFERENCE,
7699+
resolve_session_reference, response_to_events, resume_supported_slash_commands,
7700+
run_resume_command, slash_command_completion_candidates_with_sessions, status_context,
7701+
validate_no_args, write_mcp_server_fixture, CliAction, CliOutputFormat, CliToolExecutor,
7702+
GitWorkspaceSummary, InternalPromptProgressEvent, InternalPromptProgressState, LiveCli,
7703+
LocalHelpTopic, SlashCommand, StatusUsage, DEFAULT_MODEL, LATEST_SESSION_REFERENCE,
7704+
PromptHistoryEntry, render_prompt_history_report, parse_history_count,
7705+
parse_export_args, render_session_markdown, summarize_tool_payload_for_markdown, short_tool_id,
77057706
};
77067707
use api::{ApiError, MessageResponse, OutputContentBlock, Usage};
77077708
use plugins::{

0 commit comments

Comments
 (0)