From 1bbd4faf56969427b550a4d006f2d5018cf97371 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Thu, 14 Jan 2016 21:59:19 -0500 Subject: Fix broken unit test --- tests/units/Model/ProjectTest.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/units/Model/ProjectTest.php') diff --git a/tests/units/Model/ProjectTest.php b/tests/units/Model/ProjectTest.php index 990cee5a..1b3d5be3 100644 --- a/tests/units/Model/ProjectTest.php +++ b/tests/units/Model/ProjectTest.php @@ -86,6 +86,7 @@ class ProjectTest extends Base // Single category $this->assertTrue($c->save(array('project_categories' => 'Test1'))); + $this->container['memoryCache']->flush(); $this->assertEquals(2, $p->create(array('name' => 'UnitTest2'))); $project = $p->getById(2); @@ -99,6 +100,7 @@ class ProjectTest extends Base // Multiple categories badly formatted $this->assertTrue($c->save(array('project_categories' => 'ABC, , DEF 3, '))); + $this->container['memoryCache']->flush(); $this->assertEquals(3, $p->create(array('name' => 'UnitTest3'))); $project = $p->getById(3); @@ -112,6 +114,7 @@ class ProjectTest extends Base // No default categories $this->assertTrue($c->save(array('project_categories' => ' '))); + $this->container['memoryCache']->flush(); $this->assertEquals(4, $p->create(array('name' => 'UnitTest4'))); $project = $p->getById(4); -- cgit v1.2.3