Skip to content

Commit

Permalink
Fix test/
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Nov 30, 2014
1 parent 392117e commit 203ee2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/View/Helper/HtmlHelperTest.php
Expand Up @@ -763,8 +763,8 @@ public function testBufferedCssAndScriptWithIdenticalResourceName() {
$this->View->expects($this->at(1))
->method('append')
->with('script', $this->stringContains('test.min.js'));
$this->Html->css('test.min', array('inline' => false));
$this->Html->script('test.min', array('inline' => false));
$this->Html->css('test.min', array('block' => true));
$this->Html->script('test.min', array('block' => true));
}

/**
Expand Down

0 comments on commit 203ee2a

Please sign in to comment.