Skip to content

Commit

Permalink
Remove 'u' prefix from strings
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-k authored and markpeek committed Mar 27, 2021
1 parent d7c6e79 commit 135a97a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/test_conditions.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ def test_for_all_values(self):
)
self.assertEqual(
{
u"Statement": [
"Statement": [
{
u"Action": [u"s3:ListBucket"],
u"Condition": {
u"ForAllValues:StringLike": {
u"dynamodb:requestedAttributes": [
u"PostDateTime",
u"Message",
u"Tags",
"Action": ["s3:ListBucket"],
"Condition": {
"ForAllValues:StringLike": {
"dynamodb:requestedAttributes": [
"PostDateTime",
"Message",
"Tags",
]
}
},
u"Effect": u"Allow",
u"Resource": [u"arn:aws:s3:::myBucket"],
"Effect": "Allow",
"Resource": ["arn:aws:s3:::myBucket"],
}
]
},
Expand Down

0 comments on commit 135a97a

Please sign in to comment.