Fix: Fix versions

This commit is contained in:
Kim Kulling
2023-01-31 21:55:43 +01:00
committed by Kim Kulling
parent fb23ef7c02
commit bad725ec86
2 changed files with 3 additions and 3 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("2022"));
size_t pos = text.find(std::string("2023"));
EXPECT_NE(pos, std::string::npos);
}
@@ -61,7 +61,7 @@ TEST_F( utVersion, aiGetVersionMajorTest ) {
}
TEST_F( utVersion, aiGetVersionPatchTest ) {
EXPECT_EQ(aiGetVersionPatch(), 5U );
EXPECT_EQ(aiGetVersionPatch(), 6U );
}
TEST_F( utVersion, aiGetCompileFlagsTest ) {