diff --git a/tests/Unit/Legacy/TemplateGracefulFallbackTest.php b/tests/Unit/Legacy/TemplateGracefulFallbackTest.php index 626188b82..19be9c839 100644 --- a/tests/Unit/Legacy/TemplateGracefulFallbackTest.php +++ b/tests/Unit/Legacy/TemplateGracefulFallbackTest.php @@ -103,17 +103,6 @@ afterEach(function () { describe('Template Text Compilation - Graceful Fallback', function () { - it('debugs compiled output for troubleshooting', function () { - $template = '{L_MISSING_KEY}'; - $compiled = $this->template->_compile_text($template); - - // Show the actual compiled output for debugging - expect($compiled)->toBeString(); - - // Print the compiled code to understand the issue - error_log("Compiled template: " . $compiled); - }); - it('shows missing language variables as original syntax', function () { $template = '{L_MISSING_KEY}'; $compiled = $this->template->_compile_text($template);