We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a158735 commit 7926ba8Copy full SHA for 7926ba8
tests/e2e/accounts/conftest.py
@@ -23,7 +23,18 @@ def account_icon(logo_fd):
23
24
@pytest.fixture
25
def currencies():
26
- return ["USD", "EUR"]
+ return [
27
+ {
28
+ "value": "EUR",
29
+ "billingEnabled": False,
30
+ "isDefault": False
31
+ },
32
33
+ "value": "USD",
34
+ "billingEnabled": True,
35
+ "isDefault": True
36
+ }
37
+ ]
38
39
40
tests/e2e/accounts/sellers/conftest.py
@@ -22,7 +22,7 @@ def _seller(
22
"postCode": "12345",
"country": "US",
},
- "currencies": currencies,
+ "currency": currencies,
"externalId": external_id,
}
0 commit comments