Fix broken unit test

This commit is contained in:
Frederic Guillot
2016-01-14 21:59:19 -05:00
parent 9e24bb2ef0
commit 1bbd4faf56
5 changed files with 7 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ class AssetHelperTest extends Base
$this->assertEmpty($h->customCss());
$this->assertTrue($c->save(array('application_stylesheet' => 'p { color: red }')));
$this->container['memoryCache']->flush();
$this->assertEquals('<style>p { color: red }</style>', $h->customCss());
}