From 7304e232d3c0b09f7188acbd6d873506db814c93 Mon Sep 17 00:00:00 2001 From: Kamil Grygierzec Date: Wed, 20 Dec 2023 12:03:34 +0100 Subject: [PATCH] Rename fulfilled_order file to fulfilled --- tests/Api/Admin/CustomersTest.php | 2 +- tests/Api/Admin/OrdersTest.php | 2 +- .../ORM/order/{fulfilled_order.yaml => fulfilled.yaml} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/Api/DataFixtures/ORM/order/{fulfilled_order.yaml => fulfilled.yaml} (100%) diff --git a/tests/Api/Admin/CustomersTest.php b/tests/Api/Admin/CustomersTest.php index 8774f2eb49db..cc9e55f0e39a 100644 --- a/tests/Api/Admin/CustomersTest.php +++ b/tests/Api/Admin/CustomersTest.php @@ -71,7 +71,7 @@ public function it_gets_customer_statistics(): void 'authentication/api_administrator.yaml', 'customer.yaml', 'channel.yaml', - 'order/fulfilled_order.yaml', + 'order/fulfilled.yaml', ]); $header = $this->headerBuilder()->withJsonLdAccept()->withAdminUserAuthorization('api@example.com')->build(); diff --git a/tests/Api/Admin/OrdersTest.php b/tests/Api/Admin/OrdersTest.php index 7c95a49a9cc4..2404a6c32f08 100644 --- a/tests/Api/Admin/OrdersTest.php +++ b/tests/Api/Admin/OrdersTest.php @@ -73,7 +73,7 @@ public function it_gets_orders_for_customer(): void 'authentication/api_administrator.yaml', 'channel.yaml', 'order/customer.yaml', - 'order/fulfilled_order.yaml', + 'order/fulfilled.yaml', ]); /** @var CustomerInterface $customer */ diff --git a/tests/Api/DataFixtures/ORM/order/fulfilled_order.yaml b/tests/Api/DataFixtures/ORM/order/fulfilled.yaml similarity index 100% rename from tests/Api/DataFixtures/ORM/order/fulfilled_order.yaml rename to tests/Api/DataFixtures/ORM/order/fulfilled.yaml