Skip to content

Commit

Permalink
Found more linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
johubertj committed Feb 27, 2025
1 parent faf8bef commit 4d34f4f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/integrationv2/test_key_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from providers import Provider, S2N, OpenSSL
from utils import invalid_test_parameters, get_parameter_name

SERVER_DATA = f"Some random data from the server:" + random_str(10)
CLIENT_DATA = f"Some random data from the client:" + random_str(10)
SERVER_DATA = "Some random data from the server:" + random_str(10)
CLIENT_DATA = "Some random data from the client:" + random_str(10)


def test_nothing():
Expand Down
2 changes: 1 addition & 1 deletion tests/integrationv2/test_pq_handshake.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def assert_s2n_negotiation_parameters(s2n_results, expected_result):

def assert_awslc_negotiation_parameters(awslc_results, expected_result):
assert expected_result is not None
assert awslc_results.exit_code is 0
assert awslc_results.exit_code == 0
assert to_bytes(("group: " + expected_result["kem_group"])) in awslc_results.stderr
assert to_bytes(("Cipher: " + expected_result["cipher"])) in awslc_results.stderr

Expand Down
4 changes: 2 additions & 2 deletions tests/integrationv2/test_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
SERVER_STATE_FILE = "server_state"
CLIENT_STATE_FILE = "client_state"

SERVER_DATA = f"Some random data from the server:" + random_str(10)
CLIENT_DATA = f"Some random data from the client:" + random_str(10)
SERVER_DATA = "Some random data from the server:" + random_str(10)
CLIENT_DATA = "Some random data from the client:" + random_str(10)


class MainlineRole(Enum):
Expand Down

0 comments on commit 4d34f4f

Please sign in to comment.