- Renamed `execute_compact_prompt` to `compact_prompt_for_bots` and simplified logic - Removed redundant comments and empty lines in test files - Consolidated prompt compaction threshold handling - Cleaned up UI logging implementation by removing unnecessary whitespace - Improved code organization in ui_tree module The changes focus on code quality improvements, removing clutter, and making the prompt compaction logic more straightforward. Test files were cleaned up to be more concise.
15 lines
344 B
Rust
15 lines
344 B
Rust
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::tests::test_util;
|
|
#[test]
|
|
fn test_add_suggestion() {
|
|
test_util::setup();
|
|
assert!(true, "Basic add_suggestion test");
|
|
}
|
|
#[test]
|
|
fn test_suggestion_validation() {
|
|
test_util::setup();
|
|
assert!(true, "Suggestion validation test");
|
|
}
|
|
}
|