From e75acdcc7cf9141ab7c136fa9bb2fb72601e7c86 Mon Sep 17 00:00:00 2001 From: gregleleu <33321678+gregleleu@users.noreply.github.com> Date: Fri, 14 Jul 2023 09:48:04 -0400 Subject: [PATCH] Remove stray sdf_register --- R/tests/testthat/test-dbplyr-integration.R | 1 - 1 file changed, 1 deletion(-) diff --git a/R/tests/testthat/test-dbplyr-integration.R b/R/tests/testthat/test-dbplyr-integration.R index 22259ae055..3b9eca6857 100644 --- a/R/tests/testthat/test-dbplyr-integration.R +++ b/R/tests/testthat/test-dbplyr-integration.R @@ -185,7 +185,6 @@ test_that("ST_RemovePoint() works as expected", { sdf <- sdf_len(sc, 1) %>% dplyr::mutate(linestring = ST_GeomFromText("LINESTRING(0 0, 21 52, 1 1, 1 0)")) %>% dplyr::transmute(linestring = ST_RemovePoint(linestring, 1)) - sdf_register(name = random_string()) df <- sdf %>% collect() expect_equal(nrow(df), 1)