Fix compile issues in tests

Signed-off-by: sphrose <82213493+sphrose@users.noreply.github.com>
This commit is contained in:
sphrose
2021-12-22 10:43:37 +00:00
parent 657e56edf7
commit 9aec7d3113
2 changed files with 3 additions and 3 deletions
@@ -288,7 +288,7 @@ TEST_F(SurfaceDataTestApp, SurfaceData_TestRegisteredTags)
ASSERT_TRUE(AZStd::find_if(
registeredTags.begin(), registeredTags.end(),
[searchTerm](decltype(registeredTags)::value_type pair)
[=](decltype(registeredTags)::value_type pair)
{
return pair.second == searchTerm;
}));
@@ -108,7 +108,7 @@ namespace UnitTest
Vegetation::SurfaceMaskDepthFilterConfig config;
config.m_lowerDistance = -1000.0f;
config.m_upperDistance = -0.5f;
config.m_depthComparisonTags.push_back(SurfaceData::Constants::s_terrainTagCrc);
config.m_depthComparisonTags.push_back(SurfaceData::Constants::s_unassignedTagCrc);
Vegetation::SurfaceMaskDepthFilterComponent* component = nullptr;
auto entity = CreateEntity(config, &component, [](AZ::Entity* e)
@@ -120,7 +120,7 @@ namespace UnitTest
mockSurfaceHandler.m_outPosition = AZ::Vector3::CreateZero();
mockSurfaceHandler.m_outNormal = AZ::Vector3::CreateAxisZ();
mockSurfaceHandler.m_outMasks.clear();
mockSurfaceHandler.m_outMasks[SurfaceData::Constants::s_terrainTagCrc] = 1.0f;
mockSurfaceHandler.m_outMasks[SurfaceData::Constants::s_unassignedTagCrc] = 1.0f;
// passes
{