Skip to content

Commit

Permalink
fixed version string test
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishty committed Apr 19, 2021
1 parent 3fead34 commit 930cc25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/utVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}

Expand Down

0 comments on commit 930cc25

Please sign in to comment.