We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9bbf95 commit d9324b1Copy full SHA for d9324b1
1 file changed
examples/esp32spi_wpa2ent_simpletest.py
@@ -53,7 +53,8 @@ def normalize(v):
53
54
# WPA2 Enterprise support was added in fw ver 1.3.0. Check that the ESP32
55
# is running at least that version, otherwise, bail out
56
-assert version_compare(firmware_version, "1.3.0") >= 0, "Inforrect ESP32 firmware version detected. v1.3.0 or greater required"
+assert version_compare(firmware_version, "1.3.0") >= 0, (
57
+ "Incorrect ESP32 firmware version; >= 1.3.0 required.")
58
59
# Set up the SSID you would like to connect to
60
# Note that we need to call wifi_set_network prior
0 commit comments