Typo in last commit. Making flexible the range for memory usage in theme view after changing internal templates

This commit is contained in:
Jose Lorenzo Rodriguez 2011-09-18 16:42:42 -04:30
parent a2daa39a98
commit 8ccf90437a

View file

@ -258,6 +258,6 @@ class ThemeViewTest extends CakeTestCase {
$View->element('test_element'); $View->element('test_element');
} }
$end = memory_get_usage(); $end = memory_get_usage();
$this->assertLessThanOrEqual($start + 4000, $end); $this->assertLessThanOrEqual($start + 4500, $end);
} }
} }