Skip to content

Commit d6c39a7

Browse files
authored
apply autoformatting (#154)
1 parent a68cfa4 commit d6c39a7

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

test/functional/key_providers/test_base.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@
3636
_PROVIDER_ID = "Random Raw Keys"
3737
_ENCRYPTED_DATA_KEYS = [
3838
{
39-
"wrapping_key": (
40-
b"\xeby-\x80A6\x15rA8\x83#,\xe4\xab\xac`\xaf\x99Z\xc1\xce\xdb\xb6\x0f\xb7\x805\xb2\x14J3"
41-
),
39+
"wrapping_key": (b"\xeby-\x80A6\x15rA8\x83#,\xe4\xab\xac`\xaf\x99Z\xc1\xce\xdb\xb6\x0f\xb7\x805\xb2\x14J3"),
4240
"key_id": b"5325b043-5843-4629-869c-64794af77ada",
4341
"key_info": (
4442
b"5325b043-5843-4629-869c-64794af77ada\x00\x00\x00\x80\x00\x00\x00\x0c\xe0h\xe2NT\x1c\xb8\x8f!\t\xc2\x94"

test/functional/test_f_aws_encryption_sdk_client.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -839,11 +839,7 @@ def test_decryptor_deprecated_attributes(caplog, attribute, no_later_than):
839839
error_message="StreamDecryptor.{name} is deprecated and will be removed in {version}".format(
840840
name=attribute, version=no_later_than
841841
),
842-
no_later_than=no_later_than
842+
no_later_than=no_later_than,
843843
)
844844
else:
845-
_assert_decrypted_and_removed(
846-
instance=decryptor,
847-
attribute_name=attribute,
848-
removed_in=no_later_than
849-
)
845+
_assert_decrypted_and_removed(instance=decryptor, attribute_name=attribute, removed_in=no_later_than)

0 commit comments

Comments
 (0)