Update to latest Arbutils.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-12-13 12:32:52 +01:00
parent ecf8582c59
commit bbb2691b91
18 changed files with 152 additions and 164 deletions

View File

@@ -22,9 +22,7 @@ TEST_CASE("Able to get default forme") {
new PkmnLib::Library::LearnableMoves(100)),
0.5f, "testGrowthRate"_cnc, 100, 100, {"testEggGroup"_cnc});
auto forme = species->GetDefaultForme();
REQUIRE(forme != nullptr);
[[maybe_unused]] auto forme = species->GetDefaultForme();
delete species;
}
@@ -38,7 +36,6 @@ TEST_CASE("Able to get default forme name") {
0.5f, "testGrowthRate"_cnc, 100, 100, {"testEggGroup"_cnc});
auto forme = species->GetDefaultForme();
REQUIRE(forme != nullptr);
REQUIRE(forme->GetName() == "default");
delete species;