test: corrected wrong test-suite.

The value should be out of the range to make "NonSupport"
This commit is contained in:
Hermet Park 2024-06-21 15:19:08 +09:00 committed by Hermet Park
parent 24a09896d0
commit 8540246178

View file

@ -51,5 +51,5 @@ TEST_CASE("Negative termination", "[tvgInitializer]")
TEST_CASE("Invalid engine", "[tvgInitializer]") TEST_CASE("Invalid engine", "[tvgInitializer]")
{ {
REQUIRE(Initializer::init(0, CanvasEngine(100)) == Result::NonSupport); REQUIRE(Initializer::init(0, CanvasEngine(64)) == Result::NonSupport);
} }