Skip to content
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

Fix another e2e test function name #29745

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/e2e-tests/plugins/inner-blocks-templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Registers a custom script for the plugin.
*/
function enqueue_container_without_paragraph_plugin_script() {
function enqueue_inner_blocks_templates_plugin_script() {
wp_enqueue_script(
'gutenberg-test-inner-blocks-templates',
plugins_url( 'inner-blocks-templates/index.js', __FILE__ ),
Expand All @@ -27,4 +27,4 @@ function enqueue_container_without_paragraph_plugin_script() {
);
}

add_action( 'init', 'enqueue_container_without_paragraph_plugin_script' );
add_action( 'init', 'enqueue_inner_blocks_templates_plugin_script' );