summaryrefslogtreecommitdiff
path: root/tests/extmod/socket_udp_nonblock.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/socket_udp_nonblock.py')
-rw-r--r--tests/extmod/socket_udp_nonblock.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/extmod/socket_udp_nonblock.py b/tests/extmod/socket_udp_nonblock.py
index 1e74e2917..394115e4b 100644
--- a/tests/extmod/socket_udp_nonblock.py
+++ b/tests/extmod/socket_udp_nonblock.py
@@ -19,3 +19,5 @@ try:
s.recv(1)
except OSError as er:
print("EAGAIN:", er.errno == errno.EAGAIN)
+
+s.close()