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

Commit

Permalink
Browse files Browse the repository at this point in the history
- trailing whitespace
  • Loading branch information
weierophinney committed Jun 28, 2013
1 parent ee9c723 commit b3cb310
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions test/Helper/HeadMetaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -529,19 +529,19 @@ public function testConditional()
$this->assertRegExp("|^<!--\[if lt IE 7\]>|", $html);
$this->assertRegExp("|<!\[endif\]-->$|", $html);
}

public function testConditionalNoIE()
{
$html = $this->helper->appendHttpEquiv('foo', 'bar', array('conditional' => '!IE'))->toString();

$this->assertContains('<!--[if !IE]><!--><', $html);
$this->assertContains('<!--<![endif]-->', $html);
}

public function testConditionalNoIEWidthSpace()
{
$html = $this->helper->appendHttpEquiv('foo', 'bar', array('conditional' => '! IE'))->toString();

$this->assertContains('<!--[if ! IE]><!--><', $html);
$this->assertContains('<!--<![endif]-->', $html);
}
Expand Down
2 changes: 1 addition & 1 deletion test/Helper/HeadScriptTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ public function testConditionalScriptNoIEWidthSpace()
$this->assertContains('<!--[if ! IE]><!--><', $test);
$this->assertContains('<!--<![endif]-->', $test);
}

/**
* @issue ZF-5435
*/
Expand Down
2 changes: 1 addition & 1 deletion test/Helper/HeadStyleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public function testConditionalScriptNoIE()
$this->assertContains('<!--[if !IE]><!--><', $test);
$this->assertContains('<!--<![endif]-->', $test);
}

public function testConditionalScriptNoIEWidthSpace()
{
$this->helper->appendStyle('
Expand Down

0 comments on commit b3cb310

Please sign in to comment.