diff --git a/php-transformer/tests/migration/examples.php b/php-transformer/tests/migration/examples.php index af0ddf7a..8913bf3f 100644 --- a/php-transformer/tests/migration/examples.php +++ b/php-transformer/tests/migration/examples.php @@ -71,41 +71,6 @@ continue; } - if ( 'block-format-bridge-wrapper.php' === $name ) { - $smoke( - $name, - $example, - $assertions . <<<'PHP' -$serialized = bfb_convert( '
Fragment
', 'fragment', 'html' ); -$assert( isset( $fragment['schema'] ), 'BAC fragment wrapper returns result envelope' ); -$summary = bac_summarize_result( $compiled ); -$assert( isset( $summary['diagnostic_count'] ), 'BAC summary wrapper returns counts' ); -PHP - ); - continue; - } - if ( 'static-site-importer-transformer-adapter.php' === $name ) { $smoke( $name, diff --git a/php-transformer/tests/parity/run.php b/php-transformer/tests/parity/run.php index 5325cf59..e97baed4 100644 --- a/php-transformer/tests/parity/run.php +++ b/php-transformer/tests/parity/run.php @@ -415,8 +415,6 @@ function legacyRepoForOperation(string $operation): string { return match ( $operation ) { 'html_transformer.transform' => 'html-to-blocks-converter', - 'format_bridge.normalize' => 'block-format-bridge', - 'artifact_compiler.compile' => 'block-artifact-compiler', default => '', }; } @@ -425,8 +423,6 @@ function legacyCallableForOperation(string $operation): string { return match ( $operation ) { 'html_transformer.transform' => 'html_to_blocks_convert', - 'format_bridge.normalize' => 'bfb_normalize', - 'artifact_compiler.compile' => 'bac_compile_website_artifact', default => '', }; } @@ -434,7 +430,7 @@ function legacyCallableForOperation(string $operation): string function legacyBootstrapForRepo(string $repo): string { return match ( $repo ) { - 'html-to-blocks-converter', 'block-format-bridge', 'block-artifact-compiler' => 'library.php', + 'html-to-blocks-converter' => 'library.php', default => '', }; }