fixed version string test

pull/3773/head
Krishty 2021-04-19 09:51:44 +02:00
parent 3fead344ad
commit 930cc25c0e
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ TEST_F( utVersion, aiGetLegalStringTest ) {
EXPECT_NE( lv, nullptr );
std::string text( lv );
size_t pos( text.find( std::string( "2020" ) ) );
size_t pos( text.find( std::string( "2021" ) ) );
EXPECT_NE( pos, std::string::npos );
}