Skip to content

Commit

Permalink
Fix failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 6, 2014
1 parent 8cbdfac commit 15c56d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/TestCase/View/Helper/FormHelperTest.php
Expand Up @@ -1931,7 +1931,7 @@ public function testInputCustomization() {
);
$this->assertTags($result, $expected);

unset($this->Form->request->data);
$this->Form->request->data = [];

$entity->errors('field', 'Badness!');
$this->Form->create($entity, ['context' => ['table' => 'Contacts']]);
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase/View/HelperRegistryTest.php
Expand Up @@ -18,13 +18,13 @@
use Cake\Core\Plugin;
use Cake\TestSuite\TestCase;
use Cake\View\HelperRegistry;
use Cake\View\Helper\HtmlHelper;
use Cake\View\Helper;
use Cake\View\View;

/**
* Extended HtmlHelper
*/
class HtmlAliasHelper extends HtmlHelper {
class HtmlAliasHelper extends Helper {

public function afterRender($viewFile) {
}
Expand Down

0 comments on commit 15c56d2

Please sign in to comment.