Skip to content

Commit

Permalink
run the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Jul 22, 2024
1 parent e19607b commit 3e3652d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/lsp/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub fn check_intersection(range1: &Range, range2: &Range) -> bool {

pub(crate) fn get_ai_built_in_functions_for_feature() -> Option<BuiltIns> {
#[cfg(not(feature = "ai_builtins"))]
return None;
return marzano_core::built_in_functions::get_ai_placeholder_functions();
#[cfg(feature = "ai_builtins")]
return Some(ai_builtins::ai_builtins::get_ai_built_in_functions());
}
Expand Down

0 comments on commit 3e3652d

Please sign in to comment.