From 43e3114c5f5acf5958d2cbac110616412cc9e14f Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 5 Feb 2019 15:50:45 +0200 Subject: [PATCH] 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 --- tests/hwsim/test_eap_proto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")