diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-27 18:00:36 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-27 18:00:36 +0200 |
commit | 6143f635608d30461a9e5e33de3c392a87a0e980 (patch) | |
tree | 6128429232d462a0f3769314ed6bb631b15a41df | |
parent | 37a2015cc541bbc27099a09ff0bffd61bb8ccc01 (diff) | |
download | micropython-6143f635608d30461a9e5e33de3c392a87a0e980.tar.gz micropython-6143f635608d30461a9e5e33de3c392a87a0e980.zip |
tests/wipy: Fix error in wlan test.
-rw-r--r-- | tests/wipy/wlan/wlan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wipy/wlan/wlan.py b/tests/wipy/wlan/wlan.py index 922cb5dc6e..3d04c98664 100644 --- a/tests/wipy/wlan/wlan.py +++ b/tests/wipy/wlan/wlan.py @@ -97,7 +97,7 @@ print(wifi.isconnected() == False) # test init again wifi.init(WLAN.AP, ssid='www.wipy.io', auth=None, channel=5, antenna=WLAN.INT_ANT) -print(len(wlan.mac()) == 6) +print(len(wifi.mac()) == 6) # next ones MUST raise try: |