From 4c4f586e2c798a28ea441fd3ddd409806672138f Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 19 Jan 2017 23:37:44 +1100 Subject: [PATCH] tests/extmod/framebuf1: Add test for no-op fill_rect. --- tests/extmod/framebuf1.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/extmod/framebuf1.py b/tests/extmod/framebuf1.py index cdc7e5b188..47dd98d7e4 100644 --- a/tests/extmod/framebuf1.py +++ b/tests/extmod/framebuf1.py @@ -50,6 +50,7 @@ print('rect', buf) #fill rect fbuf.fill(0) +fbuf.fill_rect(0, 0, 0, 3, 1) # zero width, no-operation fbuf.fill_rect(1, 1, 3, 3, 1) print('fill_rect', buf)