Skip to content

Commit 1b82ab0

Browse files
committed
Fix test; this fails due to parity
1 parent e4532a7 commit 1b82ab0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/test_aws.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,11 @@ def test_sns_platform_endpoint_messages(self):
122122
topic_arn = client.create_topic(Name=topic_name)["TopicArn"]
123123

124124
app_name = f"app-name-{short_uid()}"
125+
attributes = {"PlatformPrincipal": "test", "PlatformCredential": "test"}
125126
platform_arn = client.create_platform_application(
126127
Name=app_name,
127128
Platform="APNS",
128-
Attributes={},
129+
Attributes=attributes,
129130
)["PlatformApplicationArn"]
130131

131132
endpoint_arn = client.create_platform_endpoint(

0 commit comments

Comments
 (0)