diff options
Diffstat (limited to 'tests/extmod/ssl_cadata.py')
| -rw-r--r-- | tests/extmod/ssl_cadata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/ssl_cadata.py b/tests/extmod/ssl_cadata.py index e66f6ca82..21d86b13f 100644 --- a/tests/extmod/ssl_cadata.py +++ b/tests/extmod/ssl_cadata.py @@ -10,7 +10,7 @@ except ImportError: # Invalid cadata. try: ssl.wrap_socket(io.BytesIO(), cadata=b"!") -except TypeError: +except AttributeError: # "cadata" keyword argument is not supported by axtls. print("SKIP") raise SystemExit |
