aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testUtils.cpp')
-rw-r--r--tests/testUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testUtils.cpp b/tests/testUtils.cpp
index 93cb9e38..c22649e6 100644
--- a/tests/testUtils.cpp
+++ b/tests/testUtils.cpp
@@ -243,9 +243,9 @@ bool testTimeoutHandler::handleTimeOut()
// testTimeoutHandlerFactory : public vmime::net::timeoutHandlerFactory
-vmime::ref <vmime::net::timeoutHandler> testTimeoutHandlerFactory::create()
+vmime::shared_ptr <vmime::net::timeoutHandler> testTimeoutHandlerFactory::create()
{
- return vmime::create <testTimeoutHandler>();
+ return vmime::make_shared <testTimeoutHandler>();
}