Skip to content

Commit

Permalink
test: fix test case broken by the new version of patrick
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Feb 13, 2025
1 parent c530d85 commit 0893350
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Suggests:
lubridate,
nanoarrow (>= 0.6.0),
nycflights13,
patrick,
patrick (>= 0.3.0),
quickcheck,
pillar,
rlang,
Expand Down
3 changes: 2 additions & 1 deletion tests/testthat/test-melt.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,6 @@ patrick::with_parameters_test_that("unpivot example",
},
create_func = c("DataFrame", "LazyFrame"),
is_func = list(is_polars_df, is_polars_lf),
.test_name = create_func
.test_name = create_func,
.interpret_glue = FALSE
)
3 changes: 2 additions & 1 deletion tests/testthat/test-s3-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ patrick::with_parameters_test_that("dimnames",

expect_equal(.fn(df_r), .fn(df_pl))
},
.fn = c(dimnames, colnames, rownames, row.names, names)
.fn = c(dimnames, colnames, rownames, row.names, names),
.interpret_glue = FALSE
)

make_cases = function() {
Expand Down

0 comments on commit 0893350

Please sign in to comment.