From 989c3c50ea22b01009aad339f12fe2c6f0d12a7f Mon Sep 17 00:00:00 2001 From: Ghislain Loas <ghislo@sandbox.pergame.net> Date: Wed, 30 Apr 2014 12:38:07 +0200 Subject: [PATCH] dev #13296 refacto test --- .../controllers/FormationControllerTest.php | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/tests/application/modules/admin/controllers/FormationControllerTest.php b/tests/application/modules/admin/controllers/FormationControllerTest.php index 8da1df9eda1..f64906926a6 100644 --- a/tests/application/modules/admin/controllers/FormationControllerTest.php +++ b/tests/application/modules/admin/controllers/FormationControllerTest.php @@ -1731,18 +1731,17 @@ class FormationControllerGetActionTest extends Admin_AbstractControllerTestCase{ /** @test */ public function shouldDisplayJsonScytheTraining() { - $expected_json_categrories = [['id'=>2, - 'label' => 'scythe chap 2'], - ['id' => 1, - 'label' => 'scythe chap 1']]; - $expected_json= ['id'=>'formations', - 'label' => 'Formations', - 'categories' => $expected_json_categrories, - 'items' => [], - 'options' => []]; - - $this->assertJsonStringEqualsJsonString(json_encode($expected_json), - $this->_response->getBody(),$this->_response->getBody()); + $expected_json= json_encode(['id'=>'formations', + 'label' => 'Formations', + 'categories' => [['id'=>2, + 'label' => 'scythe chap 2'], + ['id' => 1, + 'label' => 'scythe chap 1']], + 'items' => [], + 'options' => []]); + + $this->assertJsonStringEqualsJsonString($expected_json, + $this->_response->getBody()); } } ?> \ No newline at end of file -- GitLab