Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelsavannah committed Apr 18, 2019
1 parent 09edbd8 commit 13aa6c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mocks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ add_library(smart_mocks STATIC

add_dependencies(smart_mocks boost proto googletest)

target_include_directories(smart_mocks PRIVATE ${PROTO_INCLUDE_DIR})
target_include_directories(smart_mocks PRIVATE ${PROTO_INCLUDE_DIR} ${JSONCPP_INCLUDE_DIRS} ${GTEST_INCLUDE_DIR})
2 changes: 1 addition & 1 deletion node/test/session_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class session_test2 : public Test

session_test2()
{
session = std::make_shared<bzn::session>(this->mock_io, 0, TEST_ENDPOINT, this->mock_chaos, [&](auto, auto){this->handler_called++;}, TEST_TIMEOUT, std::list<bzn::session_shutdown_handler>{[](){}}, nullptr, this->monitor, this->options);
session = std::make_shared<bzn::session>(this->mock_io, 0, TEST_ENDPOINT, this->mock_chaos, [&](auto, auto){this->handler_called++;}, TEST_TIMEOUT, std::list<bzn::session_shutdown_handler>{[](){}}, this->mock_crypto, this->monitor, this->options);
}

void yield()
Expand Down

0 comments on commit 13aa6c4

Please sign in to comment.