From fc08a358e5a34f4539ac549842aed22f89305264 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 2 Nov 2020 11:48:51 +0100 Subject: [PATCH] Add missing assertion --- test/phpunit/HolidayTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/phpunit/HolidayTest.php b/test/phpunit/HolidayTest.php index e7e3e8749cd..e7ad436b586 100644 --- a/test/phpunit/HolidayTest.php +++ b/test/phpunit/HolidayTest.php @@ -366,7 +366,7 @@ class HolidayTest extends PHPUnit\Framework\TestCase $localobjecta=new Holiday($this->savdb); $localobjecta->updateConfCP('lastUpdate', '20100101120000'); - - $localobjecta->updateBalance(); + $result = $localobjecta->updateBalance(); + $this->assertEquals($result, 1); } }