Skip to content

Commit

Permalink
fix: run black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Mousa Zeid Baker committed Apr 4, 2022
1 parent f06f807 commit fb00b35
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/requests/test_sns.py
Expand Up @@ -9,7 +9,7 @@ def test_sns_publish() -> None:
"string": {
"DataType": "string",
"StringValue": "string",
"BinaryValue": b"bytes"
"BinaryValue": b"bytes",
}
},
"MessageDeduplicationId": "string",
Expand All @@ -21,6 +21,7 @@ def test_sns_publish() -> None:
"TopicArn": "string",
}


def test_sns_publish_batch() -> None:
request: SNSPublishBatch = {
"TopicArn": "string",
Expand All @@ -32,13 +33,13 @@ def test_sns_publish_batch() -> None:
"string": {
"DataType": "string",
"StringValue": "string",
"BinaryValue": b"bytes"
"BinaryValue": b"bytes",
}
},
"MessageDeduplicationId": "string",
"MessageGroupId": "string",
"MessageStructure": "json",
"Subject": "string",
}
]
],
}

0 comments on commit fb00b35

Please sign in to comment.