Skip to content

Commit 083a825

Browse files
committed
Change name customer
1 parent 46ec0f5 commit 083a825

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

tests/test_customer.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def test_all(self):
2020
Test Function: Customer
2121
"""
2222
customer_object = {
23-
"email": "test_payer_999943@testuser.com",
24-
"first_name": "Rafa",
25-
"last_name": "Williner",
23+
"email": "test_payer_999945@testuser.com",
24+
"first_name": "Katniss",
25+
"last_name": "Everdeen",
2626
"phone": {
2727
"area_code": "03492",
2828
"number": "432334"
@@ -42,8 +42,7 @@ def test_all(self):
4242
customer_saved = self.sdk.customer().create(customer_object)
4343
self.assertEqual(customer_saved["status"], 201)
4444

45-
customer_update = self.sdk.customer().update(customer_saved["response"]["id"],
46-
{"last_name": "Payer"})
45+
customer_update = self.sdk.customer().update(customer_saved["response"]["id"], {"last_name": "Payer"})
4746
self.assertEqual(customer_update["status"], 200)
4847

4948
customer_updated = self.sdk.customer().get(customer_saved["response"]["id"])

0 commit comments

Comments
 (0)