Skip to content

Commit

Permalink
Clean up stale comment (minor)
Browse files Browse the repository at this point in the history
  • Loading branch information
onpaws committed Aug 8, 2023
1 parent 88b8786 commit 3cb650c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2645,7 +2645,6 @@ mod tests {
async fn test_drop_function_if_exists() -> Result<()> {
let sf_context = in_memory_context().await;

// Source: https://gist.github.com/going-digital/02e46c44d89237c07bc99cd440ebfa43
let plan = sf_context
.plan_query(r#"DROP FUNCTION IF EXISTS nonexistentfunction"#)
.await;
Expand Down Expand Up @@ -2681,7 +2680,7 @@ mod tests {

// Test dropping both functions in one pass
let plan = sf_context
.plan_query(r#"DROP FUNCTION sintau, sintau2"#)
.plan_query(r#"DROP FUNCTION sintau, sintau"#)
.await;
assert!(plan.is_ok());
Ok(())
Expand Down

0 comments on commit 3cb650c

Please sign in to comment.