Skip to content

Commit

Permalink
update: bump version
Browse files Browse the repository at this point in the history
fix: test failure
  • Loading branch information
Lord-Turmoil committed Nov 30, 2024
1 parent 7d68b97 commit 0a208b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set(BINARY_NAME "mioc")
set(CMAKE_CXX_STANDARD 11)

project(${PROJECT_NAME}
VERSION 1.2.1
VERSION 1.2.3
DESCRIPTION "A mini IoC implementation with C++"
LANGUAGES CXX)

Expand Down
2 changes: 1 addition & 1 deletion tests/AssignmentTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ TEST_CASE("Assignment")

// Move container.
mioc::ServiceContainerPtr containerC = mioc::ServiceContainer::New();
*containerC = std::move(*containerA);
*containerC = std::move(*containerB);
CHECK_EQ(containerC->Resolve<IA>()->ToString(), a1->ToString());
CHECK_EQ(containerC->Resolve<IB>()->ToString(), b1->ToString());
CHECK_EQ(containerC->Resolve<IC>(), nullptr);
Expand Down

0 comments on commit 0a208b3

Please sign in to comment.