Skip to content

Commit

Permalink
Fixing failing test because of unfilled SVN tag expansions.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 7, 2009
1 parent 9445bd1 commit 6821e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/cases/libs/debugger.test.php
Expand Up @@ -91,7 +91,7 @@ function testExcerpt() {
$return = Debugger::excerpt(__FILE__, 2, 2);
$this->assertTrue(is_array($return));
$this->assertEqual(count($return), 4);
$this->assertPattern('#/* SVN FILE: \$Id: debugger.test.php#', $return[1]);
$this->assertPattern('#/* SVN FILE: \$Id\$#', $return[1]);

$return = Debugger::excerpt('[internal]', 2, 2);
$this->assertTrue(empty($return));
Expand Down

0 comments on commit 6821e7c

Please sign in to comment.