Replace US/Central with America/Chicago in a test

This commit is contained in:
Alex Kyllo 2023-10-04 10:21:36 -07:00
Родитель 9d147fd05a
Коммит 511e2a154e
3 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
Package: AzureKusto
Title: Interface to 'Kusto'/'Azure Data Explorer'
Version: 1.1.2.9000
Version: 1.1.3
Authors@R: c(
person("Hong", "Ooi", , "hongooi73@gmail.com", role = "aut"),
person("Alex", "Kyllo", , "jekyllo@microsoft.com", role = c("aut", "cre")),

Просмотреть файл

@ -1,3 +1,7 @@
# AzureKusto 1.1.3
* Fix test that broke on Linux due to upgrading the tzdata system package.
# AzureKusto 1.1.2
* Import S3 generics `tidyr::nest()` and `tidyr::unnest()`

Просмотреть файл

@ -56,6 +56,6 @@ test_that("can escape integer64 values", {
# Times -------------------------------------------------------------------
test_that("times are converted to ISO 8601", {
x <- ISOdatetime(2000, 1, 2, 3, 4, 5, tz = "US/Central")
x <- ISOdatetime(2000, 1, 2, 3, 4, 5, tz = "America/Chicago")
expect_equal(escape(x), kql("'2000-01-02T09:04:05Z'"))
})