Browse Source

Fix test/

ADmad 11 years ago
parent
commit
203ee2a33f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/View/Helper/HtmlHelperTest.php

+ 2 - 2
tests/TestCase/View/Helper/HtmlHelperTest.php

@@ -763,8 +763,8 @@ class HtmlHelperTest extends TestCase {
 		$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));
 	}
 
 /**