We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4532a7 commit 1b82ab0Copy full SHA for 1b82ab0
tests/integration/test_aws.py
@@ -122,10 +122,11 @@ def test_sns_platform_endpoint_messages(self):
122
topic_arn = client.create_topic(Name=topic_name)["TopicArn"]
123
124
app_name = f"app-name-{short_uid()}"
125
+ attributes = {"PlatformPrincipal": "test", "PlatformCredential": "test"}
126
platform_arn = client.create_platform_application(
127
Name=app_name,
128
Platform="APNS",
- Attributes={},
129
+ Attributes=attributes,
130
)["PlatformApplicationArn"]
131
132
endpoint_arn = client.create_platform_endpoint(
0 commit comments