-
Notifications
You must be signed in to change notification settings - Fork 96
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
Sort HTTP methods to remove randomness from keys #149
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.
Great catch! Would it be possible to write a unit test for this as well? That way, we prevent it from happening again in the future.
SwiftLint found issues
Generated by 🚫 Danger Swift against e08d07a |
@Chewie69006 thanks for writing the test, great job! Let's wait for one more review and we can merge. |
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.
Great!
Looks like your commit adding the test isn't signed, which blocks us from merging. Can you take care of that, @Chewie69006? Let us know if we can help. |
When do you think a new tag will be delivered ? |
Congratulations! 🎉 This was released as part of Release 3.0.2 🚀 Generated by GitBuddy |
Hello !
As
data.keys
returns in a random order, comparing 2 arrays containing same objects in different order make it return false. This way, it will return true as they will be sorted.