Skip to content

Commit 72838dc

Browse files
committed
MPT-18902 E2E API client exception with the seller tests
1 parent a158735 commit 72838dc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tests/e2e/accounts/conftest.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ def account_icon(logo_fd):
2323

2424
@pytest.fixture
2525
def currencies():
26-
return ["USD", "EUR"]
26+
return [
27+
{"value": "EUR", "billingEnabled": False, "isDefault": False},
28+
{"value": "USD", "billingEnabled": True, "isDefault": True},
29+
]
2730

2831

2932
@pytest.fixture

tests/e2e/accounts/sellers/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def _seller(
2222
"postCode": "12345",
2323
"country": "US",
2424
},
25-
"currencies": currencies,
25+
"currency": currencies,
2626
"externalId": external_id,
2727
}
2828

0 commit comments

Comments
 (0)