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

Commit 6ab5f0e

Browse files
committed
fix wrong const
1 parent 5160b83 commit 6ab5f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Helper/HeadScriptTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ public function testSupportsCrossOriginAttribute()
476476

477477
public function testOmitsTypeAttributeIfEmptyValue()
478478
{
479-
$this->view->plugin('doctype')->setDoctype('html5');
479+
$this->view->plugin('doctype')->setDoctype(\Zend\View\Helper\Doctype::HTML5);
480480
$this->helper->__invoke()->appendScript('// some script' . PHP_EOL, '');
481481
$test = $this->helper->__invoke()->toString();
482482
$this->assertNotContains('type', $test);

0 commit comments

Comments
 (0)