diff options
author | Kim Kulling <[email protected]> | 2025-06-08 21:50:39 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2025-06-08 21:50:39 +0200 |
commit | fb375dd8c0a032106a2122815fb18dffe0283721 (patch) | |
tree | 363c229e627e0bad46e24065b9d8e32572db3ee9 /test/unit | |
parent | a95addfc4a00154f76f70626574ee913870ad24a (diff) |
Prepare 6.0.2 (#6231)HEADv6.0.2upstream/master
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/utVersion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/utVersion.cpp b/test/unit/utVersion.cpp index e45406b0e..078bfd7be 100644 --- a/test/unit/utVersion.cpp +++ b/test/unit/utVersion.cpp @@ -48,7 +48,7 @@ TEST_F( utVersion, aiGetLegalStringTest ) { EXPECT_NE( lv, nullptr ); std::string text( lv ); - size_t pos = text.find(std::string("2024")); + size_t pos = text.find(std::string("2025")); EXPECT_NE(pos, std::string::npos); } @@ -61,7 +61,7 @@ TEST_F( utVersion, aiGetVersionMinorTest ) { } TEST_F( utVersion, aiGetVersionPatchTest ) { - EXPECT_EQ(aiGetVersionPatch(), 1U ); + EXPECT_EQ(aiGetVersionPatch(), 2U ); } TEST_F( utVersion, aiGetCompileFlagsTest ) { |