diff --git a/VERSION b/VERSION index c1cc381f9..2bf6ba28e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.9.6 \ No newline at end of file +v0.9.7 \ No newline at end of file diff --git a/tests/automated/helpers.py b/tests/automated/helpers.py index aeef3d4f0..172b7ddb5 100644 --- a/tests/automated/helpers.py +++ b/tests/automated/helpers.py @@ -21,11 +21,14 @@ def connect_wo_esp(): def connect_wifi(): p = Panda() - ssid, pw = p.get_serial() - ssid = ssid.strip("\x00") - assert(ssid.isalnum()) + dongle_id, pw = p.get_serial() + dongle_id = ssid.strip("\x00") + assert(dongle_id.isalnum()) assert(pw.isalnum()) - ssid = str("panda-" + ssid) + _connect_wifi(dongle_id, pw) + +def _connect_wifi(dongle_id, pw): + ssid = str("panda-" + dongle_id) print("WIFI: connecting to %s" % ssid)