-
Notifications
You must be signed in to change notification settings - Fork 34
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
assert does not always report errors #85
Comments
Sorry for the delay, checking this out now |
Just fixed this issue! Thanks for noticing it :) |
Brilliant. |
Glad to here it. Thanks again for bringing the issue to my attention |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've been having problems getting
assert
to print errors in a package I'm writing. Some calls toassert
work properly and some don't.Here is a reproducible example which gives the same symptoms.
I think the problem is because in the latter example
returns a vector rather than a matrix so
colnames
inreturns NULL and the
lapply
doesn't run.The text was updated successfully, but these errors were encountered: