mirrored from git://develop.git.wordpress.org/
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Backport: WP_Theme_JSON_Resolver changes #3901
Closed
Mamaduka
wants to merge
16
commits into
WordPress:trunk
from
Mamaduka:backport/theme-json-resolver-changes
Closed
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1ff63af
Add tests
Mamaduka f28b16c
Migrate WP_Query performance optimizations
Mamaduka 91b86d8
Merged data should consider origin to return early
Mamaduka f3cc87c
Make child themes inherit parent's style variations
Mamaduka 19b6516
Try assertSameSets
Mamaduka d85fa86
Update Global Styles controller tests
Mamaduka 0e595e6
Add since mention to docblock
Mamaduka 8c1d84a
Capitalize JSON here
Mamaduka 8c1db45
Fix spacing
Mamaduka 8b5cc6c
Reference ticket
Mamaduka 9952fa3
Fix fomatting
Mamaduka 3b40b25
plural
Mamaduka 8820c62
Use plural
Mamaduka 3a090ec
Reference the ticket
Mamaduka 9870b44
ensure all code runs before the assertions
Mamaduka 1cc848e
Spacing CS fix
Mamaduka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is it preferred sorting arrays before assertions, or can we use something like
assertEqualsCanonicalizing
?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.
Here the deeply nested array of arrays are being recursively key sorted before the assertion.
assertSameSets()
repeats an index sort at the first dimension of the arrays. That's not necessary.Instead of
assertSameSets()
, useassertSame()
.I'm wondering though why this needed. Pulling down to explore.
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.
Hi, @hellofromtonya
Let me know if any follow-ups are needed for PHPUnits tests on this PR.