Skip to content

Commit

Permalink
skip a failed unit test on cran
Browse files Browse the repository at this point in the history
  • Loading branch information
earowang committed Jun 26, 2024
1 parent c0cfb85 commit 7ee7fe8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: tsibble
Title: Tidy Temporal Data Frames and Tools
Version: 1.1.4
Version: 1.1.5
Authors@R:
c(person(given = "Earo",
family = "Wang",
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# tsibble 1.1.5

* Fix `difference()` giving extra NA values when the time series is shorter than the lag length. (#310, @mitchelloharawild)

# tsibble 1.1.4
Expand Down
1 change: 1 addition & 0 deletions tests/testthat/test-tsibble2ts.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ harvest <- tsibble(
)

test_that("as.ts.tbl_ts()", {
skip_on_cran()
expected <- ts(matrix(fill_gaps(harvest, .full = TRUE)$kilo, ncol = 2),
start = 2010, frequency = 1)
colnames(expected) <- c("cherry", "kiwi")
Expand Down

0 comments on commit 7ee7fe8

Please sign in to comment.