summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-05-04 22:27:14 +1000
committerDamien George <damien.p.george@gmail.com>2018-05-04 22:27:14 +1000
commitcd9d71edc819615a72e01d3ddd602e9bd4c99803 (patch)
tree571079a3e8f8b9eeb5be7961205165ec22a0de77
parent4b5111f8e1ec1fc0dc0845a090beee1ecbd309df (diff)
tests/cpydiff: Remove types_str_decodeerror now that it succeeds.
Commit 68c28174d0e0ec3f6b1461aea3a0b6a1b84610bb implemented checking for valid utf-8 data.
-rw-r--r--tests/cpydiff/types_str_decodeerror.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/cpydiff/types_str_decodeerror.py b/tests/cpydiff/types_str_decodeerror.py
deleted file mode 100644
index 944db98fe..000000000
--- a/tests/cpydiff/types_str_decodeerror.py
+++ /dev/null
@@ -1,11 +0,0 @@
-"""
-categories: Types,str
-description: UnicodeDecodeError not raised when expected
-cause: Unknown
-workaround: Unknown
-"""
-try:
- print(repr(str(b"\xa1\x80", 'utf8')))
- print('Should not get here')
-except UnicodeDecodeError:
- print('UnicodeDecodeError')