Fix override in mock base

This commit is contained in:
Seth Hillbrand 2022-09-10 14:46:32 -07:00
parent c2643f53cf
commit f900acdac9
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ MOCK_BASE_CLASS( MOCK_PGM_BASE, PGM_BASE )
MOCK_METHOD( SetLocalEnvVariables, 0, void() );
MOCK_CONST_METHOD( GetLocalEnvVariables, 0, ENV_VAR_MAP&() );
int GetSelectedLanguageIdentifier()
int GetSelectedLanguageIdentifier() const override
{
return 0;
}