Skip to content

Commit

Permalink
Replace US/Central with America/Chicago in a test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkyllo committed Oct 4, 2023
1 parent 9d147fd commit 511e2a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = "aut"),
person("Alex", "Kyllo", , "[email protected]", role = c("aut", "cre")),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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()`
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test_escape.r
Original file line number Diff line number Diff line change
Expand Up @@ -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'"))
})

0 comments on commit 511e2a1

Please sign in to comment.