From: Jouni Malinen Date: Tue, 5 Feb 2019 13:50:45 +0000 (+0200) Subject: tests: Fix EAP-FAST protocol testing with python3 X-Git-Tag: hostap_2_8~425 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=43e3114c5f5acf5958d2cbac110616412cc9e14f;p=thirdparty%2Fhostap.git tests: Fix EAP-FAST protocol testing with python3 This was hit on Ubuntu 18.04 (newer python3 and OpenSSL library versions compared to earlier tests). Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_eap_proto.py b/tests/hwsim/test_eap_proto.py index a0dc6f4fb..8cc64c048 100644 --- a/tests/hwsim/test_eap_proto.py +++ b/tests/hwsim/test_eap_proto.py @@ -8163,7 +8163,7 @@ def run_eap_fast_phase2(dev, test_payload, test_failure=True): except AttributeError: state = conn.get_state_string() if state: - logger.info("State: " + state) + logger.info("State: " + str(state)) def process_clienthello(ctx, payload): logger.info("Process ClientHello")