Skip to content

Commit 716aae8

Browse files
committed
tests/basics/builtin_str_hex.py: Remove corresponding .exp file.
As of CPython 3.7 `bytes.fromhex()` skips all ASCII whitespace. And as of CPython 3.8 `bytes.hex()` supports the optional separator argument. So this test no longer needs a .exp file. Signed-off-by: Damien George <damien@micropython.org>
1 parent bfc69db commit 716aae8

2 files changed

Lines changed: 2 additions & 41 deletions

File tree

tests/basics/builtin_str_hex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
):
3636
try:
3737
print(bytes.fromhex(x))
38-
except ValueError as e:
39-
print("ValueError:", e)
38+
except ValueError:
39+
print("ValueError", x)

tests/basics/builtin_str_hex.py.exp

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)