-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
children test failing #45
Comments
@sckott Looks like an issue with the These are equal: taxizedb::children(3701, db='ncbi', ambiguous=TRUE)
taxize::children(3701, db='ncbi', ambiguous=TRUE) And so are these: taxizedb::children(3701, db='ncbi', ambiguous=FALSE)
taxize::children(3701, db='ncbi', ambiguous=FALSE) But not these: taxizedb::children(3701, db='ncbi')
taxize::children(3701, db='ncbi') Judging by the output above, in I think something is mixed up on the |
What do you think about this set of test: # they agree in the ambiguous case
expect_equal(
taxizedb::children(3701, db='ncbi', ambiguous=TRUE),
taxize::children(3701, db='ncbi', ambiguous=TRUE)
)
# they agree in the unambiguous case
expect_equal(
taxizedb::children(3701, db='ncbi', ambiguous=FALSE),
taxize::children(3701, db='ncbi', ambiguous=FALSE)
)
# the defaults agree
expect_equal(
taxizedb::children(3701, db='ncbi'),
taxize::children(3701, db='ncbi')
) Currently, the last test fails, but I think the default behavior of |
unarchiving it thanks to @stitam 😸 |
the test at https://github.com/ropensci/taxizedb/blob/master/tests/testthat/test-children.R#L10-L13 is failing
I see
The text was updated successfully, but these errors were encountered: