summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2018-04-22 15:10:26 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2018-04-22 15:10:26 +0100
commitfb57bd6c76dd81fbe46056910d7b0a01e5bf05ad (patch)
tree901459b947d41f1d4e186ba07b17df9c020fddb1
parentIce 3.7 (diff)
downloadmirrorsearch-fb57bd6c76dd81fbe46056910d7b0a01e5bf05ad.tar.bz2
mirrorsearch-fb57bd6c76dd81fbe46056910d7b0a01e5bf05ad.tar.xz
mirrorsearch-fb57bd6c76dd81fbe46056910d7b0a01e5bf05ad.zip
Update to new PluginMock interfacemirrorsearch-0.2.0.1
-rw-r--r--service/test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/test.cpp b/service/test.cpp
index acc03e2..6d064fc 100644
--- a/service/test.cpp
+++ b/service/test.cpp
@@ -8,10 +8,10 @@
class Service : DB::PluginMock<PQ::Mock>, public IceTray::DryIce {
public:
- Service() : DB::PluginMock<PQ::Mock>("user=postgres", "MirrorSearch", {
+ Service() : DB::PluginMock<PQ::Mock>("MirrorSearch", {
rootDir / "schema.sql",
rootDir / "data.sql"
- }) { }
+ }, "user=postgres") { }
};