Skip to content

Commit

Permalink
Removing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 2, 2009
1 parent 324b479 commit 0b13e3d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cake/tests/cases/libs/cake_test_case.test.php
Expand Up @@ -169,7 +169,6 @@ function testAssertGoodTags() {
* @access public
* @return void
*/

function testNumericValuesInExpectationForAssertTags() {
$value = 220985;

Expand All @@ -182,7 +181,7 @@ function testNumericValuesInExpectationForAssertTags() {
'/p'
);
$this->assertTrue($this->Case->assertTags($input, $pattern));

$input = '<p><strong>' . $value . '</strong></p><p><strong>' . $value . '</strong></p>';
$pattern = array(
'<p',
Expand All @@ -197,7 +196,7 @@ function testNumericValuesInExpectationForAssertTags() {
'/p',
);
$this->assertTrue($this->Case->assertTags($input, $pattern));

$input = '<p><strong>' . $value . '</strong></p><p id="' . $value . '"><strong>' . $value . '</strong></p>';
$pattern = array(
'<p',
Expand All @@ -213,7 +212,7 @@ function testNumericValuesInExpectationForAssertTags() {
);
$this->assertTrue($this->Case->assertTags($input, $pattern));
}

/**
* testBadAssertTags
*
Expand Down

0 comments on commit 0b13e3d

Please sign in to comment.