diff options
author | Adam Jackson <ajax@redhat.com> | 2015-07-15 11:10:59 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2015-07-15 11:10:59 -0400 |
commit | 920b070987c00b369bd6c77c6283f68dffbc7b83 (patch) | |
tree | 02b92b5556017c01fd9326d3e409631a88915712 | |
parent | 01d77ac727032d003a7381ca2ee0f55022295d16 (diff) |
tests: Fix thinko in minpixwin50
The other minpixwin tests draw to a window 50% the size of the pixmap,
it's clear this one was meant to too.
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | do_tests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1299,10 +1299,10 @@ Test test[] = { InitCompositePix, DoCompositePixWin, MidScroll, EndCompositeWin, VERSION1_6, COMP, 0, {4, 5, NULL, NULL, 0x8000}}, - {"-minpixwin100", "Scale 100x100 from pixmap to 5x5 window", NULL, + {"-minpixwin100", "Scale 100x100 from pixmap to 50x50 window", NULL, InitCompositePix, DoCompositePixWin, MidScroll, EndCompositeWin, VERSION1_6, COMP, 0, - {4, 5, NULL, NULL, 0x8000}}, + {4, 50, NULL, NULL, 0x8000}}, {"-minpixwin500", "Scale 500x500 from pixmap to 250x250 window", NULL, InitCompositePix, DoCompositePixWin, MidScroll, EndCompositeWin, VERSION1_6, COMP, 0, |