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

Commit 0d4e944

Browse files
committed
Autoescaping in HeadMeta
1 parent 2a3dd18 commit 0d4e944

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/Helper/HeadMetaTest.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -622,11 +622,7 @@ public function testTurnOffAutoEscapeDoesNotEncode()
622622
$this->helper->setAutoEscape(false)->appendHttpEquiv('foo', 'bar=baz');
623623
$this->assertEquals(
624624
'<meta http-equiv="foo" content="bar=baz" />',
625-
$this->helper->toString()
626-
627-
628-
629-
625+
$this->helper->toString()
630626
);
631627
}
632628
}

0 commit comments

Comments
 (0)