From 830d95e79db51880ef87f2a9d50f3b00723f2077 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 24 Jul 2025 09:47:18 -0500 Subject: [PATCH] Remove test that is no longer true --- test/test_mqtt/MQTT.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/test_mqtt/MQTT.cpp b/test/test_mqtt/MQTT.cpp index 8047079ba..a2cf0785f 100644 --- a/test/test_mqtt/MQTT.cpp +++ b/test/test_mqtt/MQTT.cpp @@ -823,14 +823,6 @@ void test_configWithDefaultServerAndInvalidPort(void) TEST_ASSERT_FALSE(MQTT::isValidConfig(config)); } -// Configuration with the default server and tls_enabled = true is invalid. -void test_configWithDefaultServerAndInvalidTLSEnabled(void) -{ - meshtastic_ModuleConfig_MQTTConfig config = {.tls_enabled = true}; - - TEST_ASSERT_FALSE(MQTT::isValidConfig(config)); -} - // isValidConfig connects to a custom host and port. void test_configCustomHostAndPort(void) {