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
The filter options flip through a string representation of an object until it finds one that doesn't match:
unittest/R/ut_cmp.R
Lines 20 to 31 in cf19036
The theory was it should end with multiple str calls, increasing length / accuracy until it generates output that is different. Something like:-
str
function (x) utils::str(x, vec.len = 1000, digits.d = 5, nchar.max = 1000), function (x) utils::str(x, vec.len = 1e10, digits.d = 10, nchar.max = 1e10), function (x) utils::str(x, vec.len = 1e20, digits.d = .Machine$double.digits, nchar.max = 1e20),
The text was updated successfully, but these errors were encountered:
ut_cmp: Try different str options to coax out a difference #6
20bc3d4
Increase str() detail until a difference is found.
No branches or pull requests
The filter options flip through a string representation of an object until it finds one that doesn't match:
unittest/R/ut_cmp.R
Lines 20 to 31 in cf19036
The theory was it should end with multiple
str
calls, increasing length / accuracy until it generates output that is different. Something like:-The text was updated successfully, but these errors were encountered: