From 80077b95ff5f24edfa2fe1836e8cb557f87dabfb Mon Sep 17 00:00:00 2001 From: Vinciane <vinciane.bizet@maarch.org> Date: Wed, 20 Feb 2019 18:04:52 +0100 Subject: [PATCH] FIX #9511 Fix TU after change controller --- test/unitTests/app/entity/EntityControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unitTests/app/entity/EntityControllerTest.php b/test/unitTests/app/entity/EntityControllerTest.php index a6910e090ab..9f8ab9d8058 100755 --- a/test/unitTests/app/entity/EntityControllerTest.php +++ b/test/unitTests/app/entity/EntityControllerTest.php @@ -189,7 +189,7 @@ class EntityControllerTest extends TestCase $this->assertSame(false, $responseBody->entity->hasChildren); $this->assertSame(0, $responseBody->entity->documents); $this->assertInternalType('array', $responseBody->entity->users); - $this->assertSame(0, $responseBody->entity->templates); + $this->assertInternalType('array', $responseBody->entity->templates); $this->assertSame(0, $responseBody->entity->instances); $this->assertSame(0, $responseBody->entity->redirects); } -- GitLab