Skip to content

Commit

Permalink
Fix autoload-dev path in WP 404 caching plugin
Browse files Browse the repository at this point in the history
The path to the test files in the autoload-dev section of composer.json has been corrected. The double backslash was missing in the original path and this was causing issues with the loading of test files - this fix resolves that issue.
  • Loading branch information
attackant committed Mar 11, 2024
1 parent 9c7c104 commit 9f7e246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"autoload-dev": {
"psr-4": {
"Alley\WP\WP_404_Caching\\Tests\\": "tests"
"Alley\\WP\\WP_404_Caching\\Tests\\": "tests"
}
},
"extra": {
Expand Down

0 comments on commit 9f7e246

Please sign in to comment.