Skip to content

Commit f486cd9

Browse files
committed
Adding test.
1 parent c72e2ea commit f486cd9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_bytes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ def test_setitem():
184184
except TypeError:
185185
pass
186186

187+
def test_unsignedByte():
188+
assert b'\x80' > b'\x00'
189+
assert not b'\x80' < b'\x00'
187190

188191
class BaseGetSlice:
189192
def assertEqualWithType(self, a, b):

0 commit comments

Comments
 (0)