diff options
Diffstat (limited to 'server/InterfaceControllerTest.cpp')
| -rw-r--r-- | server/InterfaceControllerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/InterfaceControllerTest.cpp b/server/InterfaceControllerTest.cpp index fc5dce12..9f5c427f 100644 --- a/server/InterfaceControllerTest.cpp +++ b/server/InterfaceControllerTest.cpp @@ -94,7 +94,7 @@ class StablePrivacyTest : public testing::Test { } void expectSetProperty(const std::string& key, const std::string& val, Status status) { - EXPECT_CALL(mProperties, set(key, val)).WillOnce(Return(status)); + EXPECT_CALL(mProperties, set(key, val)).WillOnce(Return(std::move(status))); } void expectWriteToFile(const Fd fd, const std::string& val, int err) { |
