Skip to content

Commit e198210

Browse files
committed
Fix test descriptions
1 parent e04e887 commit e198210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fake_ssl_context_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_connect_https():
1919
ssl_context = adafruit_connection_manager.get_radio_ssl_context(radio)
2020
connection_manager = adafruit_connection_manager.ConnectionManager(mock_pool)
2121

22-
# verify a HTTPS call gets a _FakeSSLSocket
22+
# verify a HTTPS call for a board without built in WiFi gets a _FakeSSLSocket
2323
socket = connection_manager.get_socket(
2424
mocket.MOCK_HOST_1, 443, "https:", ssl_context=ssl_context
2525
)
@@ -37,7 +37,7 @@ def test_connect_https_not_supported():
3737
ssl_context = adafruit_connection_manager.get_radio_ssl_context(radio)
3838
connection_manager = adafruit_connection_manager.ConnectionManager(mock_pool)
3939

40-
# verify a HTTPS call gets a _FakeSSLSocket
40+
# verify a HTTPS call for a board without built in WiFi and SSL support errors
4141
with pytest.raises(AttributeError) as context:
4242
connection_manager.get_socket(
4343
mocket.MOCK_HOST_1, 443, "https:", ssl_context=ssl_context

0 commit comments

Comments
 (0)