From b652ee705b7378211250bebb478a3894836350bb Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 22 Jul 2016 12:02:04 +0300 Subject: tests/bytes_compare: Rework test for bytes <-> str comparison. This may produce a warning, depending on MicroPython configuration. --- tests/basics/bytes_compare2.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/basics/bytes_compare2.py') diff --git a/tests/basics/bytes_compare2.py b/tests/basics/bytes_compare2.py index 02516de93..8959da3ae 100644 --- a/tests/basics/bytes_compare2.py +++ b/tests/basics/bytes_compare2.py @@ -1,6 +1,5 @@ print(b"1" == 1) print(b"123" == bytearray(b"123")) -print(b"123" == "123") print(b'123' < bytearray(b"124")) print(b'123' > bytearray(b"122")) print(bytearray(b"23") in b"1234") -- cgit v1.2.3