We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778729c commit cac8dc3Copy full SHA for cac8dc3
2 files changed
tests/extmod/framebuf1.py
@@ -33,3 +33,9 @@
33
print(buf)
34
fbuf.scroll(0, -2)
35
36
+fbuf.scroll(1, 0)
37
+print(buf)
38
+fbuf.scroll(-1, 0)
39
40
+fbuf.scroll(2, 2)
41
tests/extmod/framebuf1.py.exp
@@ -4,3 +4,6 @@ bytearray(b'\x01\x00\x00\x00\x01\x80\x00\x00\x00\x80')
4
1 0
5
bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00')
6
bytearray(b'\x00\x00@\x00\x00\x00\x00\x00\x00\x00')
7
+bytearray(b'\x00\x00\x00@\x00\x00\x00\x00\x00\x00')
8
+bytearray(b'\x00\x00@\x00\x00\x00\x00\x00\x00\x00')
9
+bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01')
0 commit comments