We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expect_similar()
df1 <- data.frame(key = 1:10000, binom_50 = rbinom(10000, 1, 0.5)) df2 <- data.frame(key = 1:10000, binom_51 = rbinom(10000, 1, 0.51)) testdat::expect_similar(binom_50, df2, binom_51, data = df1) #> Warning: 'glue::collapse' is deprecated. #> Use 'glue_collapse' instead. #> See help("Deprecated") and help("glue-deprecated").
Just need to do as the warning message requests and replace glue::collapse with glue::glue_collapse:
glue::collapse
glue::glue_collapse
testdat/R/expect-datacomp.R
Line 47 in 9f3ef72
The text was updated successfully, but these errors were encountered:
96aa84f
kinto-b
No branches or pull requests
Just need to do as the warning message requests and replace
glue::collapse
withglue::glue_collapse
:testdat/R/expect-datacomp.R
Line 47 in 9f3ef72
The text was updated successfully, but these errors were encountered: