8000
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
Because you have
test_that("missing_wells errors when expected",{ expect_error(missing_wells(full, well = "well", plate = 1)) expect_error(missing_wells(full, well = TRUE)) expect_error(missing_wells(full, well = full$well)) expect_error(missing_wells(as.list(full), well = full$well), expect_error(missing_wells(full, well = missing$wel))) expect_error(missing_wells(as.matrix(full), well = full$well)) expect_error(missing_wells(fill, well = full$not_valid_col)) })
But I think you want:
test_that("missing_wells errors when expected",{ expect_error(missing_wells(full, well = "well", plate = 1)) expect_error(missing_wells(full, well = TRUE)) expect_error(missing_wells(full, well = full$well)) expect_error(missing_wells(as.list(full), well = full$well)) expect_error(missing_wells(full, well = missing$wel)) expect_error(missing_wells(as.matrix(full), well = full$well)) expect_error(missing_wells(fill, well = full$not_valid_col)) })
The text was updated successfully, but these errors were encountered:
9c691c1
Can you please submit an update to CRAN soon? I am aiming to submit testthat next week.
Sorry, something went wrong.
Yes I will try and submit it before Monday.
No branches or pull requests
Because you have
But I think you want:
The text was updated successfully, but these errors were encountered: