Skip to content

Commit 25011d7

Browse files
committed
somehow a check was missed in local testing
1 parent 943e8d0 commit 25011d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import aws_encryption_sdk.identifiers
2121
import aws_encryption_sdk.internal.utils
2222
from aws_encryption_sdk.exceptions import InvalidDataKeyError, SerializationError, UnknownIdentityError
23-
from aws_encryption_sdk.internal.defaults import MAX_FRAME_SIZE, MESSAGE_ID_LENGTH
23+
from aws_encryption_sdk.internal.defaults import MAX_FRAME_SIZE
2424
from aws_encryption_sdk.internal.utils import verify_ec_interface
2525
from aws_encryption_sdk.structures import DataKey, EncryptedDataKey, MasterKeyInfo, RawDataKey
2626

@@ -42,7 +42,7 @@ def test_prep_stream_data_passthrough():
4242
assert_prepped_stream_identity(test, io.BytesIO)
4343

4444

45-
def test_verify_interface(patch_ec):
45+
def test_verify_ec_interface(patch_ec):
4646
patch_ec.EllipticCurve.__abstractmethods__ = set(("key_size", "name"))
4747
mock_algorithm_info = MagicMock(return_value=sentinel.algorithm_info, spec=patch_ec.EllipticCurve)
4848
mock_algorithm_info.return_value.name = True

0 commit comments

Comments
 (0)