summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/framebuf_subclass.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/framebuf_subclass.py')
-rw-r--r--tests/extmod/framebuf_subclass.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/extmod/framebuf_subclass.py b/tests/extmod/framebuf_subclass.py
index a9e3c5efc7..4cd9ea4eb5 100644
--- a/tests/extmod/framebuf_subclass.py
+++ b/tests/extmod/framebuf_subclass.py
@@ -34,6 +34,7 @@ fb.pixel(2, 2, 0x0708)
fb2.blit(fb, 0, 0)
print(bytes(fb2))
+
# Test that blitting something that isn't a subclass fails with TypeError.
class NotAFrameBuf:
pass