From cdfb455bdd102d2d2a7db7bbd001139ad33098ff Mon Sep 17 00:00:00 2001 From: Etienne Bacher <52219252+etiennebacher@users.noreply.github.com> Date: Mon, 11 Sep 2023 18:45:49 +0200 Subject: [PATCH] fix --- tests/testthat/test-standardize-data.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/testthat/test-standardize-data.R b/tests/testthat/test-standardize-data.R index 1ea41be32..4056ee0b9 100644 --- a/tests/testthat/test-standardize-data.R +++ b/tests/testthat/test-standardize-data.R @@ -290,7 +290,8 @@ test_that("unstandardize: grouped data", { unstand <- unstandardize(stand, select = "mpg") expect_identical( poorman::ungroup(unstand), - mtcars + mtcars, + ignore_attr = TRUE ) expect_s3_class(unstand, "grouped_df")