summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/op_error.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-02-15 18:11:16 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-02-15 18:11:16 +0300
commitf980c70997eb9748ed169d486489ab3d0d2002af (patch)
treeb1d32b37acaf447230147b7fdb4a2d37d956e38d /tests/basics/op_error.py
parentb737c9cbc823b012808ae08c8b285b4e1543703a (diff)
downloadmicropython-f980c70997eb9748ed169d486489ab3d0d2002af.tar.gz
micropython-f980c70997eb9748ed169d486489ab3d0d2002af.zip
tests/basic/: Make various tests skippable.
To run the testsuite on small ports.
Diffstat (limited to 'tests/basics/op_error.py')
-rw-r--r--tests/basics/op_error.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/basics/op_error.py b/tests/basics/op_error.py
index 19ce04bc52..5ba6a80e26 100644
--- a/tests/basics/op_error.py
+++ b/tests/basics/op_error.py
@@ -20,7 +20,6 @@ test_exc("False in True", TypeError)
test_exc("1 * {}", TypeError)
test_exc("1 in 1", TypeError)
test_exc("bytearray() // 2", TypeError)
-test_exc("m = memoryview(bytearray())\nm += bytearray()", TypeError)
# object with buffer protocol needed on rhs
test_exc("bytearray(1) + 1", TypeError)