Skip to content

Commit

Permalink
Tests: Remove logspam from TestPainter
Browse files Browse the repository at this point in the history
  • Loading branch information
nico committed Mar 14, 2024
1 parent 9aefc5c commit f44078e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Tests/LibGfx/TestPainter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f44078e

Please sign in to comment.