From 87c94e1a31ea809d45ee7a4dd5282f7152cab44b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Wed, 3 Sep 2025 22:33:25 +0200 Subject: [PATCH] fix parameters (#35209) --- test/phpunit/ExpeditionTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/phpunit/ExpeditionTest.php b/test/phpunit/ExpeditionTest.php index a70219cfbbd..5787191727f 100644 --- a/test/phpunit/ExpeditionTest.php +++ b/test/phpunit/ExpeditionTest.php @@ -1,5 +1,5 @@ +/* Copyright (C) 2023 Alexandre Janniaux * Copyright (C) 2024-2025 Frédéric France * * This program is free software; you can redistribute it and/or modify @@ -118,7 +118,7 @@ class ExpeditionTest extends CommonClassTest $localobject->name = "foobar"; - $result = $localobject->update($localobject->id, $user); + $result = $localobject->update($user); print __METHOD__." id=".$localobject->id." result=".$result."\n"; $this->assertLessThan($result, 0, $localobject->errorsToString());