Skip to content
Snippets Groups Projects
Commit 2384be52 authored by Blodgett, David L.'s avatar Blodgett, David L.
Browse files

minor class issue in a test

parent 95b5435d
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ test_that("multiLine data works", {
test_that("multiline data frame works", {
lineData <- get_fixture_data("multilinestring")
testdata<-as.data.frame(list("name"=c("test_name"), "id"=c(1)), stringsAsFactors = FALSE)
lineData <- dplyr::bind_cols(lineData, testdata)
lineData <- sf::st_sf(dplyr::bind_cols(lineData, testdata))
nc_file <- write_geometry(nc_file=tempfile(), geom_data = lineData)
nc<-nc_open(nc_file)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment