From d3e74aeee94dd0d02cd0af7540c76fabdc06e4f3 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Tue, 31 Dec 2019 13:51:42 +0100 Subject: [PATCH] Use GetPkmnSpecies instead of GetSpecies --- tests/LibraryTests/SpeciesLibraryTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/LibraryTests/SpeciesLibraryTests.cpp b/tests/LibraryTests/SpeciesLibraryTests.cpp index e7f123e..550b3cc 100644 --- a/tests/LibraryTests/SpeciesLibraryTests.cpp +++ b/tests/LibraryTests/SpeciesLibraryTests.cpp @@ -31,7 +31,7 @@ TEST_CASE("Able to insert and retrieve from library", "library") { CreatureLib::Core::StatisticSet(100, 100, 100, 100, 100, 100), {"testAbility"}, {"testHiddenAbility"}, new CreatureLib::Library::LearnableAttacks(100)), 0.5f, "testGrowthRate", 100, 100)); - auto val = lib->GetSpecies("foo"); + auto val = lib->GetPkmnSpecies("foo"); REQUIRE(val->GetName() == "foo"); delete lib; }