diff --git a/DESCRIPTION b/DESCRIPTION index ada50c0..4846136 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,7 +2,7 @@ Package: looker3 Type: Package Title: looker3 (http://github.com/abelcastilloavant/avant-looker3) Description: Pull data from Looker using the fancy new 3.0 API. -Version: 0.1.6 +Version: 0.1.7 Author: Abel Castillo Maintainer: Abel Castillo Authors@R: c(person("Abel", "Castillo", diff --git a/NEWS.md b/NEWS.md index 423bacf..f9aaea7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,6 @@ +# Version 0.1.6 +- `extract_query_result` now uses `readr::read_csv` instead of `utils::read.csv` under the hood. + # Version 0.1.6 - removed `logout_api_call`, using `cacher` to cache tokens instead. diff --git a/tests/testthat/test-response_handlers.R b/tests/testthat/test-response_handlers.R index 51cb0cc..7347e7c 100644 --- a/tests/testthat/test-response_handlers.R +++ b/tests/testthat/test-response_handlers.R @@ -39,7 +39,7 @@ describe("processing successful responses", { }) test_that("extract_query_result returns a data frame", { result <- extract_query_result(fake_query_response) - # readr::read_csv adds extra class types, + # readr::read_csv adds extra classes, # so let's remove them before making our comparison class(result) <- "data.frame" expect_equal(result, data.frame(ID = 1, VALUE = 2))