This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 6881149f [DOCS] fix dbplyr integration test failures (#648)
6881149f is described below

commit 6881149f71ca6d5f14b3c2518ad21071104cf6e0
Author: Yitao Li <[email protected]>
AuthorDate: Wed Jul 13 00:32:54 2022 +0000

    [DOCS] fix dbplyr integration test failures (#648)
    
    Co-authored-by: Yitao Li <[email protected]>
---
 R/tests/testthat/test-dbplyr-integration.R | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/R/tests/testthat/test-dbplyr-integration.R 
b/R/tests/testthat/test-dbplyr-integration.R
index 41aaa5f6..075fcf3f 100644
--- a/R/tests/testthat/test-dbplyr-integration.R
+++ b/R/tests/testthat/test-dbplyr-integration.R
@@ -71,7 +71,7 @@ test_that("ST_Buffer() works as expected", {
       dbplyr::remote_query(),
     sprintf(
       "SELECT `id`, ST_Buffer(`pt`, CAST(3 AS DOUBLE)) AS `pt`\nFROM `%s`",
-      sdf$ops$x$x
+      dbplyr::remote_name(sdf)
     ) %>%
       dbplyr::sql()
   )
@@ -115,7 +115,7 @@ test_that("ST_SimplifyPreserveTopology() works as 
expected", {
       dbplyr::remote_query(),
     sprintf(
       "SELECT `id`, ST_SimplifyPreserveTopology(`pt`, CAST(1 AS DOUBLE)) AS 
`pt`\nFROM `%s`",
-      sdf$ops$x$x
+      dbplyr::remote_name(sdf)
     ) %>%
       dbplyr::sql()
   )

Reply via email to