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 a8ba7c5 commit 99945b9Copy full SHA for 99945b9
tests/platform/test_service_stores.py
@@ -32,8 +32,8 @@ def test_update_actions(
32
commercetools_api, ct_platform_client: PlatformClient, store_draft
33
):
34
store = ct_platform_client.with_project_key("foo").stores().post(store_draft)
35
-
36
- assert store.languages is None
+ assert store is not None
+ assert store.languages == []
37
38
store = (
39
ct_platform_client.with_project_key("foo")
@@ -49,6 +49,7 @@ def test_update_actions(
49
)
50
51
52
53
assert store.languages == ["en-US"]
54
55
0 commit comments