Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/MuxManagerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ bool MuxManagerTest::getIfUseWellKnownMac(std::string port)
return muxPortPtr->mMuxPortConfig.getIfUseWellKnownMacActiveActive();
}

bool MuxManagerTest::setUseWellKnownMacActiveActive(bool use)
void MuxManagerTest::setUseWellKnownMacActiveActive(bool use)
{
mMuxManagerPtr->setUseWellKnownMacActiveActive(use);
}
Expand Down
2 changes: 1 addition & 1 deletion test/MuxManagerTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MuxManagerTest: public testing::Test
uint32_t getLinkWaitTimeout_msec(std::string port);
uint32_t getOscillationInterval_sec(std::string port);
bool getIfUseWellKnownMac(std::string port);
bool setUseWellKnownMacActiveActive(bool use);
void setUseWellKnownMacActiveActive(bool use);
bool getIfUseToRMac(std::string port);
bool getOscillationEnabled(std::string port);
common::MuxPortConfig::LinkProberType getLinkProberType(const std::string &port);
Expand Down
Loading