tests/multi_net: Simplify SKIP when imports don't exist.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2025-08-27 13:33:22 +10:00
parent 3274f0355b
commit f0d445a466

View File

@ -1,13 +1,8 @@
# Test asyncio stream readinto() method using TCP server/client
try:
import asyncio
except ImportError:
print("SKIP")
raise SystemExit
try:
import array
import asyncio
except ImportError:
print("SKIP")
raise SystemExit