From 135a97a58a95c04d2635fff68d2c080413f1d804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=A4ufl?= Date: Mon, 22 Mar 2021 09:23:36 +0100 Subject: [PATCH] Remove 'u' prefix from strings --- tests/test_conditions.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/test_conditions.py b/tests/test_conditions.py index e92aedab..ccbf3270 100644 --- a/tests/test_conditions.py +++ b/tests/test_conditions.py @@ -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"], } ] },