fix(cli): correct query match limit warning condition
This commit is contained in:
parent
c1a0f48781
commit
dcef0cc0ee
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ pub fn query_file_at_path(
|
|||
}
|
||||
}
|
||||
}
|
||||
if !query_cursor.did_exceed_match_limit() {
|
||||
if query_cursor.did_exceed_match_limit() {
|
||||
warn!("Query exceeded maximum number of in-progress captures!");
|
||||
}
|
||||
if should_test {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue