removing debug print in tests

This commit is contained in:
Clément Le Bihan
2021-07-09 14:02:15 +02:00
committed by GitHub
parent 08259d018f
commit 5e72662d88
-1
View File
@@ -160,7 +160,6 @@ TEST_CASE("getPixelReferenceFromTileRow 8bpp", "[PPU][TileRenderer]")
int j = 0;
for (const auto &row : correctValues) {
for (const auto &refValue : row) {
std::cout << i << ' ' << j << std::endl;
CHECK(tileRenderer.getPixelReferenceFromTileRow(i, j++) == refValue);
}
j = 0;