From c7576341e6fa53de21574dbb914045413d0e3f7f Mon Sep 17 00:00:00 2001 From: Johan Cwiklinski Date: Thu, 11 Nov 2021 09:08:30 +0100 Subject: [PATCH] Fix unknown constant --- tests/Galette/Repository/tests/units/PaymentTypes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Galette/Repository/tests/units/PaymentTypes.php b/tests/Galette/Repository/tests/units/PaymentTypes.php index 842766958..9e337ce9e 100644 --- a/tests/Galette/Repository/tests/units/PaymentTypes.php +++ b/tests/Galette/Repository/tests/units/PaymentTypes.php @@ -93,7 +93,7 @@ class PaymentTypes extends GaletteTestCase { if (is_array($this->remove) && count($this->remove) > 0) { $delete = $this->zdb->delete(\Galette\Entity\PaymentType::TABLE); - $delete->where->in(\Galette\Repository\PaymentTypes::PK, $this->remove); + $delete->where->in(\Galette\Entity\PaymentTypes::PK, $this->remove); $this->zdb->execute($delete); } -- 2.39.2