Skip to content

Commit

Permalink
Fix unknown constant
Browse files Browse the repository at this point in the history
  • Loading branch information
trasher committed Nov 11, 2021
1 parent 30e6be7 commit c757634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Galette/Repository/tests/units/PaymentTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private function deletePaymentType()
{
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);
}

Expand Down

0 comments on commit c757634

Please sign in to comment.