Skip to content

Commit

Permalink
assign query to result to avoid release
Browse files Browse the repository at this point in the history
  • Loading branch information
detule authored and krlmlr committed Oct 1, 2024
1 parent 19d3936 commit c28fdf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/spec-result-send-query.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec_result_send_query <- list(
#' when the connection is closed.
con <- connect(ctx)
on.exit(dbDisconnect(con))
expect_warning(dbSendQuery(con, trivial_query()), NA)
expect_warning(res<-dbSendQuery(con, trivial_query()), NA)

expect_warning({
dbDisconnect(con)
Expand Down

0 comments on commit c28fdf4

Please sign in to comment.