-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
Rename fixtures paths to be consistent #52169
Conversation
What about renaming those folders? |
I didn't dare to suggest. Really. |
cc49c65
to
23469b0
Compare
@OskarStark there is the "rename" option. What do you think ? (if this pass, all in-progress PR will probably hate me) fabbot fails because there is an invalid json file (the same there was but the path has changed...) |
Don't worry, they can rebase their PRs |
5b07a61
to
ec09b40
Compare
Thank you @smnandre. |
@@ -110,7 +110,7 @@ public function testSkipFuzzyTranslations() | |||
public function testMissingPlurals() | |||
{ | |||
$loader = new PoFileLoader(); | |||
$resource = __DIR__.'/../fixtures/missing-plurals.po'; | |||
$resource = __DIR__ . '/../Fixtures/missing-plurals.po'; |
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.
this is against the Fixer config and caused lot of extra output to PHP CS Fixer results.
let's fix it.
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.
This PR was merged into the 6.4 branch. Discussion ---------- [AssetMapper] fix tests | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT Move the new directory introduced in #53260 to the `Fixtures` directory (`fixtures` had been renamed in #52169). Commits ------- 48cf213 fix tests
There are currently two components with a "fixtures" (lowercase) folder,
So on case-sensitive filesystems the following exclusion in php-cs-fixer does not work.
Those are the files who are currently not excluded on case-sensitive filesystems
This PR exclude files in both senstivie / insenstive systems.