summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2022-11-03 11:43:19 -0400
committerGitHub <noreply@github.com>2022-11-03 11:43:19 -0400
commita352db144bce649af42a5726092123327bde93c1 (patch)
tree6c490f01124fb6c7712027679f55825af1b2e05b
parentc35befee72552ba98a6b3d90c31b9b1204928566 (diff)
downloadwebsocket-client-sslcheck.tar.gz
Fix failing test, missing wsssslcheck
-rw-r--r--websocket/tests/test_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/websocket/tests/test_app.py b/websocket/tests/test_app.py
index 8614d08..5526d3e 100644
--- a/websocket/tests/test_app.py
+++ b/websocket/tests/test_app.py
@@ -191,7 +191,7 @@ class WebSocketAppTest(unittest.TestCase):
""" Test WebSocketApp binary opcode
"""
# The lack of wss:// in the URL below is on purpose
- app = ws.WebSocketApp('streaming.vn.teslamotors.com/streaming/')
+ app = ws.WebSocketApp('wss://streaming.vn.teslamotors.com/streaming/')
app.run_forever(ping_interval=2, ping_timeout=1, ping_payload="Ping payload")
@unittest.skipUnless(TEST_WITH_INTERNET, "Internet-requiring tests are disabled")