From 93dc2e1a0d931569fbd218549f4c233d9b369754 Mon Sep 17 00:00:00 2001 From: Mateusz Date: Thu, 16 Apr 2026 09:41:13 +0200 Subject: [PATCH] Fix test fixture --- tests/Api/DataFixtures/ORM/payment_request/order.yaml | 1 + .../DataFixtures/ORM/payment_request/order_with_customer.yaml | 1 + .../payment_request/order_with_customer_created_as_guest.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/tests/Api/DataFixtures/ORM/payment_request/order.yaml b/tests/Api/DataFixtures/ORM/payment_request/order.yaml index fcd3cc2d49..2e90543f58 100644 --- a/tests/Api/DataFixtures/ORM/payment_request/order.yaml +++ b/tests/Api/DataFixtures/ORM/payment_request/order.yaml @@ -14,4 +14,5 @@ Sylius\Component\Core\Model\Order: state: "new" paymentState: "awaiting_payment" shippingState: "ready" + checkoutState: "completed" tokenValue: "token" diff --git a/tests/Api/DataFixtures/ORM/payment_request/order_with_customer.yaml b/tests/Api/DataFixtures/ORM/payment_request/order_with_customer.yaml index 8e1d76355f..d11f0c13d2 100644 --- a/tests/Api/DataFixtures/ORM/payment_request/order_with_customer.yaml +++ b/tests/Api/DataFixtures/ORM/payment_request/order_with_customer.yaml @@ -14,6 +14,7 @@ Sylius\Component\Core\Model\Order: state: "new" paymentState: "awaiting_payment" shippingState: "ready" + checkoutState: "completed" tokenValue: "token" __calls: - setCustomerWithAuthorization: ["@customer_oliver"] diff --git a/tests/Api/DataFixtures/ORM/payment_request/order_with_customer_created_as_guest.yaml b/tests/Api/DataFixtures/ORM/payment_request/order_with_customer_created_as_guest.yaml index c58b22a5a4..06b2478163 100644 --- a/tests/Api/DataFixtures/ORM/payment_request/order_with_customer_created_as_guest.yaml +++ b/tests/Api/DataFixtures/ORM/payment_request/order_with_customer_created_as_guest.yaml @@ -14,5 +14,6 @@ Sylius\Component\Core\Model\Order: state: "new" paymentState: "awaiting_payment" shippingState: "ready" + checkoutState: "completed" tokenValue: "token" customer: "@customer_oliver"