We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5a0ba0 commit 3fb5616Copy full SHA for 3fb5616
dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/IndexTest.php
@@ -339,7 +339,12 @@ public function testSaveActionExistingCustomerUnsubscribeNewsletter()
339
$this->assertEquals(1, $subscriber->getStatus());
340
341
$post = [
342
- 'customer' => ['entity_id' => $customerId],
+ 'customer' => [
343
+ 'entity_id' => $customerId,
344
+ 'email' => 'customer@example.com',
345
+ 'firstname' => 'test firstname',
346
+ 'lastname' => 'test lastname',
347
+ ],
348
'subscription' => 'false'
349
];
350
$this->getRequest()->setPostValue($post);
0 commit comments