summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-01-11 19:17:35 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2016-01-11 19:17:35 +0000
commit3735337508ab1d55ac77ccef4d66d54045a01e1e (patch)
treef2ad99fddf9bb13b10a4facf6b84266f65ad1ee4
parentUse icetray tools for SQL embedding (diff)
downloadmythfs-3735337508ab1d55ac77ccef4d66d54045a01e1e.tar.bz2
mythfs-3735337508ab1d55ac77ccef4d66d54045a01e1e.tar.xz
mythfs-3735337508ab1d55ac77ccef4d66d54045a01e1e.zip
Use new dryice interface for proxy lookup
-rw-r--r--mythfs/unittests/mockDefs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/mythfs/unittests/mockDefs.cpp b/mythfs/unittests/mockDefs.cpp
index b061c64..68dec08 100644
--- a/mythfs/unittests/mockDefs.cpp
+++ b/mythfs/unittests/mockDefs.cpp
@@ -10,8 +10,8 @@ Service::Service() :
}
TestClient::TestClient() :
- db(MythFS::DBPrx::checkedCast(ic->stringToProxy("db:tcp -p 9002"))),
- s(NetFS::ServicePrx::checkedCast(ic->stringToProxy("service:tcp -p 9002")))
+ db(getProxy<MythFS::DBPrx>("db")),
+ s(getProxy<NetFS::ServicePrx>("service"))
{
}