diff --git a/tests/integrationv2/test_client_authentication.py b/tests/integrationv2/test_client_authentication.py index bf141538ee1..87563c997da 100644 --- a/tests/integrationv2/test_client_authentication.py +++ b/tests/integrationv2/test_client_authentication.py @@ -6,9 +6,7 @@ from configuration import (available_ports, ALL_TEST_CIPHERS, PROTOCOLS) from common import Certificates, ProviderOptions, Protocols, data_bytes, Signatures from fixtures import managed_process # lgtm [py/unused-import] -from global_flags import S2N_PROVIDER_VERSION, get_flag from providers import Provider, S2N, GnuTLS, OpenSSL -from test_signature_algorithms import signature_marker from utils import invalid_test_parameters, get_parameter_name, get_expected_s2n_version, to_bytes # If we test every available cert, the test takes too long. diff --git a/tests/integrationv2/test_happy_path.py b/tests/integrationv2/test_happy_path.py index f306b3ec913..b264e815078 100644 --- a/tests/integrationv2/test_happy_path.py +++ b/tests/integrationv2/test_happy_path.py @@ -1,7 +1,6 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import copy -import platform import pytest from configuration import available_ports, ALL_TEST_CIPHERS, ALL_TEST_CURVES, ALL_TEST_CERTS, PROTOCOLS diff --git a/tests/integrationv2/test_renegotiate.py b/tests/integrationv2/test_renegotiate.py index 8d53645c0d2..05afdb391de 100644 --- a/tests/integrationv2/test_renegotiate.py +++ b/tests/integrationv2/test_renegotiate.py @@ -1,7 +1,6 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import copy -import platform import pytest import random diff --git a/tests/integrationv2/test_signature_algorithms.py b/tests/integrationv2/test_signature_algorithms.py index c941046f5c6..2b52e686e4b 100644 --- a/tests/integrationv2/test_signature_algorithms.py +++ b/tests/integrationv2/test_signature_algorithms.py @@ -4,7 +4,7 @@ import pytest from configuration import available_ports, ALL_TEST_CIPHERS, ALL_TEST_CERTS -from common import ProviderOptions, Protocols, Certificates, Signatures, data_bytes, Ciphers +from common import ProviderOptions, Protocols, Signatures, data_bytes from fixtures import managed_process # lgtm [py/unused-import] from providers import Provider, S2N, OpenSSL, GnuTLS from utils import invalid_test_parameters, get_parameter_name, get_expected_s2n_version, to_bytes