-
Notifications
You must be signed in to change notification settings - Fork 1
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
Intermittent strings.Join bug. #2
Comments
Hmm, now that i think this seems more like an ordering issue, but still I think some abstraction is getting leaked with the end user having to see |
The The issue here is not due to testy or go-cmp; the test is failing due to an actual difference between two values being compared. If the two values are maps, then the issue may be due to key randomization, like you mentioned. Comparing maps in golang is annoying, sorry, my advice would be to rewrite your test/comparisons to avoid it if possible. |
You may be interested in the
|
I think this is related to the output generation done by testy. As you can see the issue is with key
r_uploadfile_019304d6-5500-7d19-b728-7f0fac31c88d
but it seems to fine in the debug print I did in the test(see below). Most times it succeeds but sometimes the test errors out with this. (this can be reproduced in isolation for that particular test). I am not sure wherestrings.Join
is coming from.The text was updated successfully, but these errors were encountered: