Skip to content

Commit

Permalink
Fix function name in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alecgeatches committed Jan 2, 2025
1 parent 2e35e7c commit dd03319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/Render/RenderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function testRenderQueryBlockBindingsRender() {
// Register block configuration with WordPress, normally done during the 'init' filter
$block_config = ConfigStore::get_block_configuration( 'remote-data-blocks/test-zip-api' );
$this->assertTrue( is_array( $block_config ) && [] !== $block_config );
BlockRegistration::register_block_config( $block_config );
BlockRegistration::register_block_configuration( $block_config );

$result_html = do_blocks('
<!-- wp:remote-data-blocks/test-zip-api {"remoteData":{"blockName":"remote-data-blocks/test-zip-api","queryInput":{"zip_code":"12345"}}} -->
Expand Down

0 comments on commit dd03319

Please sign in to comment.