From 7243da3576685267d2ae606187a371c97304391d Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Mon, 17 Jan 2022 08:24:10 +0100 Subject: [PATCH] :green_heart: Fix RestTest When no objects to return, since #231 we are now getting `[]` instead of `null` --- test/webservices/RestTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/webservices/RestTest.php b/test/webservices/RestTest.php index bf1b5ea9c..c7642e3ea 100644 --- a/test/webservices/RestTest.php +++ b/test/webservices/RestTest.php @@ -180,7 +180,7 @@ JSON; $this->assertContains($sExpectedJsonOuput, $this->DeleteTicketFromApi($iId)); $sExpectedJsonOuput=<<assertEquals($sExpectedJsonOuput, $this->GetTicketViaRest($iId)); }