mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
Tests: Remove logspam from TestPainter
This commit is contained in:
parent
466f1f5bf3
commit
77850f06dc
1 changed files with 0 additions and 1 deletions
|
@ -38,7 +38,6 @@ TEST_CASE(draw_scaled_bitmap_with_transform)
|
|||
painter.draw_scaled_bitmap_with_transform(dest_rect, source_bitmap, source_rect, transform);
|
||||
for (int y = 0; y < bitmap->height(); ++y) {
|
||||
for (int x = 0; x < bitmap->width(); ++x) {
|
||||
dbgln("{} {}: {}", x, y, bitmap->get_pixel(x, y));
|
||||
if (x >= 10 && x < 10 + 10 && y >= 20 && y < 20 + 5)
|
||||
EXPECT_EQ(bitmap->get_pixel(x, y), Color::Black);
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue