Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit a2eb914

Browse files
committed
fix docheader/license cs error by using a suffix that is not php
1 parent 0d521b5 commit a2eb914

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

test/ZendViewRendererTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ public function testCanRenderWithCustomSuffix()
613613
$renderer = new ZendViewRenderer(null, null, 'php');
614614
$renderer->addPath(__DIR__ . '/TestAsset');
615615
$result = $renderer->render('zendview-custom-suffix', ['name' => $name]);
616-
$content = file_get_contents(__DIR__ . '/TestAsset/zendview-custom-suffix.php');
616+
$content = file_get_contents(__DIR__ . '/TestAsset/zendview-custom-suffix.pht');
617617
$content = str_replace('<?php echo $name ?>', $name, $content);
618618
$this->assertEquals($content, $result);
619619
}

0 commit comments

Comments
 (0)