From 0afc57fd11a4d2e6997a139572cff1d41593e69a Mon Sep 17 00:00:00 2001 From: Igor Abdrakhimov Date: Wed, 27 Sep 2023 17:03:29 -0700 Subject: [PATCH] Use unsigned host for unsigned custom auth test --- test/test_mqtt.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/test_mqtt.py b/test/test_mqtt.py index abe7e877..6df40e26 100644 --- a/test/test_mqtt.py +++ b/test/test_mqtt.py @@ -201,11 +201,8 @@ def test_mqtt311_builder_direct_unsigned_custom_authorizer(self): connection = mqtt_connection_builder.direct_with_custom_authorizer( auth_username="", - auth_authorizer_name=CUSTOM_AUTHORIZER_NAME_SIGNED, - auth_authorizer_signature=CUSTOM_AUTHORIZER_SIGNATURE, + auth_authorizer_name=CUSTOM_AUTHORIZER_NAME_UNSIGNED, auth_password=CUSTOM_AUTHORIZER_PASSWORD, - auth_token_key_name=CUSTOM_AUTHORIZER_TOKEN_KEY_NAME, - auth_token_value=CUSTOM_AUTHORIZER_TOKEN_VALUE, endpoint=CUSTOM_AUTHORIZER_ENDPOINT, client_id=create_client_id(), client_bootstrap=bootstrap)