diff options
Diffstat (limited to 'tests/basics/op_error.py')
-rw-r--r-- | tests/basics/op_error.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/basics/op_error.py b/tests/basics/op_error.py index 5ba6a80e26..b30b5f0a35 100644 --- a/tests/basics/op_error.py +++ b/tests/basics/op_error.py @@ -23,7 +23,6 @@ test_exc("bytearray() // 2", TypeError) # object with buffer protocol needed on rhs test_exc("bytearray(1) + 1", TypeError) -test_exc("(1 << 70) in 1", TypeError) # unsupported subscription test_exc("1[0]", TypeError) |