From 72838dc44780f278790fe28d34a19062d53445ee Mon Sep 17 00:00:00 2001 From: David Franco Date: Thu, 12 Mar 2026 11:11:06 +0100 Subject: [PATCH] MPT-18902 E2E API client exception with the seller tests --- tests/e2e/accounts/conftest.py | 5 ++++- tests/e2e/accounts/sellers/conftest.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/e2e/accounts/conftest.py b/tests/e2e/accounts/conftest.py index bf3147ba..7d4ed74c 100644 --- a/tests/e2e/accounts/conftest.py +++ b/tests/e2e/accounts/conftest.py @@ -23,7 +23,10 @@ def account_icon(logo_fd): @pytest.fixture def currencies(): - return ["USD", "EUR"] + return [ + {"value": "EUR", "billingEnabled": False, "isDefault": False}, + {"value": "USD", "billingEnabled": True, "isDefault": True}, + ] @pytest.fixture diff --git a/tests/e2e/accounts/sellers/conftest.py b/tests/e2e/accounts/sellers/conftest.py index 60cefe14..e7f22161 100644 --- a/tests/e2e/accounts/sellers/conftest.py +++ b/tests/e2e/accounts/sellers/conftest.py @@ -22,7 +22,7 @@ def _seller( "postCode": "12345", "country": "US", }, - "currencies": currencies, + "currency": currencies, "externalId": external_id, }