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

Commit 86e74fc

Browse files
committed
Change from assertEquals to assertNotEquals
1 parent 09bd407 commit 86e74fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Helper/HeadMetaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,6 @@ public function testConditionalNoIEWidthSpace()
619619
public function testTurnOffAutoEscapeDoesNotEncode()
620620
{
621621
$this->helper->setAutoEscape(false)->appendHttpEquiv('foo', 'bar=baz');
622-
$this->assertEquals('<meta http-equiv="foo" content="bar=baz" />', $this->helper->toString());
622+
$this->assertNotEquals('<meta http-equiv="foo" content="bar=baz">', $this->helper->toString());
623623
}
624624
}

0 commit comments

Comments
 (0)