diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-22 15:10:57 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-22 15:10:57 +0100 |
commit | dee1a41305d9587a50620c7ce71322f0acf59556 (patch) | |
tree | 1d31bc7158505eef553fed3d44e2e8e353c690ba | |
parent | C++17 and Ice 3.7 (diff) | |
download | mythfs-dee1a41305d9587a50620c7ce71322f0acf59556.tar.bz2 mythfs-dee1a41305d9587a50620c7ce71322f0acf59556.tar.xz mythfs-dee1a41305d9587a50620c7ce71322f0acf59556.zip |
Update to new PluginMock interfacemythfs-0.3.0.1
-rw-r--r-- | mythfs/unittests/mockDefs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mythfs/unittests/mockDefs.cpp b/mythfs/unittests/mockDefs.cpp index 9f30ca0..42ef4e8 100644 --- a/mythfs/unittests/mockDefs.cpp +++ b/mythfs/unittests/mockDefs.cpp @@ -4,10 +4,10 @@ #include <dbimpl.h> Service::Service() : - DB::PluginMock<MySQL::Mock>("options=p2testmysql", "MythFS", { + DB::PluginMock<MySQL::Mock>("MythFS", { rootDir / "fixtures" / "schema-min.sql", rootDir / "fixtures" / "data.sql" - }) + }, "options=p2testmysql") { } |