Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 17, 2024
1 parent 413f54d commit 9bfff6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/tabby-webserver/src/service/answer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ mod tests {
.collect_relevant_docs(&context_info_helper, &doc_query_3)
.await;

assert!(hits_3.len() > 0);
assert!(!hits_3.is_empty());

// Test Case 4: Test with empty source IDs and no public search
let doc_query_4 = DocQueryInput {
Expand Down Expand Up @@ -1247,7 +1247,7 @@ mod tests {
.create("test-repo".to_string(), TEST_GIT_URL.to_string())
.await
.unwrap();
let source_id = format!("git:{}", repo_id.to_string());
let source_id = format!("git:{}", repo_id);

println!("Created test repository with ID: {}", source_id);

Expand Down

0 comments on commit 9bfff6e

Please sign in to comment.