Skip to content

Commit dc560c2

Browse files
committed
MC-36521: SQLSTATE[42S02]: Base table or view not found while placing order
1 parent 76c3f14 commit dc560c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderAddressUpdateTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function testOrderAddressUpdate()
2828
$order = $objectManager->get(\Magento\Sales\Model\Order::class)->loadByIncrementId('100000001');
2929

3030
$address = [
31-
OrderAddress::REGION => 'California',
31+
OrderAddress::REGION => 'CA',
3232
OrderAddress::POSTCODE => '11111',
3333
OrderAddress::LASTNAME => 'lastname',
3434
OrderAddress::STREET => ['street'],
@@ -75,7 +75,7 @@ public function testOrderAddressUpdate()
7575
$billingAddress = $actualOrder->getBillingAddress();
7676

7777
$validate = [
78-
OrderAddress::REGION => 'California',
78+
OrderAddress::REGION => 'CA',
7979
OrderAddress::POSTCODE => '11111',
8080
OrderAddress::LASTNAME => 'lastname',
8181
OrderAddress::STREET => 'street',

dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function testOrderGet(): void
7676
'city' => 'Los Angeles',
7777
'email' => 'customer@null.com',
7878
'postcode' => '11111',
79-
'region' => 'California'
79+
'region' => 'CA'
8080
];
8181

8282
$result = $this->makeServiceCall(self::ORDER_INCREMENT_ID);

0 commit comments

Comments
 (0)