-
-
Notifications
You must be signed in to change notification settings - Fork 47
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
Add cyrillic letters to sort tests #161
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, one small nit about the newline. Thanks for adding the tests.
songWith(id: 5, dateModified: 0, dateAdded: 0, title: 'A', artist: '', album: ''), | ||
songWith(id: 7, dateModified: 0, dateAdded: 0, title: 'a', artist: '', album: ''), | ||
songWith(id: 6, dateModified: 0, dateAdded: 0, title: 'AA', artist: '', album: ''), | ||
songWith(id: 8, dateModified: 0, dateAdded: 0, title: 'z', artist: '', album: ''), | ||
songWith(id: 17, dateModified: 0, dateAdded: 0, title: 'А (кириллица)', artist: '', album: ''), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At first I thought that it's weird that this entry is is sorted after the z
, but it looks like it's standard behaviour that all cyrillic letters are sorted after the ascii ones.
Co-authored-by: Abestanis <abestanis.gc@gmail.com>
Thanks for making them =) |
I've seen this CI failure before, but I can't replicate it locally. My guess is that we start the initialization in a test, and then the test ends but the while the initialization is waiting on an |
Created an issue #162 |
Fixes #158