test Picture: Fix array release

fix code
This commit is contained in:
JunsuChoi 2021-11-01 14:06:47 +09:00 committed by Hermet Park
parent b12421b4d1
commit 021b86a065

View file

@ -297,7 +297,7 @@ TEST_CASE("Load SVG file and render", "[tvgPicture]")
REQUIRE(Initializer::term(CanvasEngine::Sw) == Result::Success);
delete buffer;
delete[] buffer;
}
TEST_CASE("Load PNG file and render", "[tvgPicture]")
@ -366,7 +366,7 @@ TEST_CASE("Load TVG file and render", "[tvgPicture]")
REQUIRE(Initializer::term(CanvasEngine::Sw) == Result::Success);
delete buffer;
delete[] buffer;
}
TEST_CASE("Load RAW file and render", "[tvgPicture]")