partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit dbd533c1af9e08ba7ac75faa2003d8854c0200f2
parent 99e5a3fe7b31cbf544204eb3dd4dd33b41bf5f92
Author: Timo A. Hummel <felicitus@felicitus.org>
Date:   Fri,  6 Nov 2015 23:47:16 +0100

Fixed default category separator for tests

Diffstat:
Msrc/PartKeepr/CategoryBundle/Tests/AbstractMoveCategoryTest.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/PartKeepr/CategoryBundle/Tests/AbstractMoveCategoryTest.php b/src/PartKeepr/CategoryBundle/Tests/AbstractMoveCategoryTest.php @@ -58,7 +58,7 @@ abstract class AbstractMoveCategoryTest extends WebTestCase ); $this->assertEquals($rootCategory->getId(), $secondCategory->getParent()->getId()); - $this->assertEquals("Root Node / Second Category", $secondCategory->getCategoryPath()); + $this->assertEquals("Root Node ➤ Second Category", $secondCategory->getCategoryPath()); } abstract public function getFixtureLoaderClass();