Skip to content

Commit

Permalink
Update utVersion.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkulling committed Sep 23, 2023
1 parent cebb062 commit c421247
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/utVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Open Asset Import Library (assimp)
---------------------------------------------------------------------------
Copyright (c) 2006-2022, assimp team
Copyright (c) 2006-2023, assimp team
All rights reserved.
Expand Down Expand Up @@ -53,15 +53,15 @@ TEST_F( utVersion, aiGetLegalStringTest ) {
}

TEST_F( utVersion, aiGetVersionMinorTest ) {
EXPECT_EQ(aiGetVersionMinor(), 2U);
EXPECT_EQ(aiGetVersionMinor(), 3U);
}

TEST_F( utVersion, aiGetVersionMajorTest ) {
EXPECT_EQ( aiGetVersionMajor(), 5U );
}

TEST_F( utVersion, aiGetVersionPatchTest ) {
EXPECT_EQ(aiGetVersionPatch(), 6U );
EXPECT_EQ(aiGetVersionPatch(), 0U );
}

TEST_F( utVersion, aiGetCompileFlagsTest ) {
Expand Down

0 comments on commit c421247

Please sign in to comment.