Skip to content

Commit

Permalink
Don't use deprecated tibble function
Browse files Browse the repository at this point in the history
  • Loading branch information
imanuelcostigan committed Sep 7, 2019
1 parent fc404f1 commit 3e94e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/vol-surface-class.R
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ is.VolQuotes <- function(x) {

interpolate.VolSurface <- function(x, at, ...) {
assertthat::assert_that(
tibble::is.tibble(at),
tibble::is_tibble(at),
setequal(names(at), c("term", "smile")),
assertthat::is.date(at$term),
is.numeric(at$smile)
Expand Down

0 comments on commit 3e94e46

Please sign in to comment.