diff options
Diffstat (limited to 'test/plugins/html/DemoOutputTest.cpp')
-rw-r--r-- | test/plugins/html/DemoOutputTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/plugins/html/DemoOutputTest.cpp b/test/plugins/html/DemoOutputTest.cpp index 2db4012..6123c79 100644 --- a/test/plugins/html/DemoOutputTest.cpp +++ b/test/plugins/html/DemoOutputTest.cpp @@ -36,8 +36,9 @@ TEST(DemoHTMLTransformer, writeHTML) // Construct Manager Logger logger; Manager mgr{1}; + Rooted<model::SystemTypesystem> sys{new model::SystemTypesystem(mgr)}; // Get the domain. - Rooted<model::Domain> domain = model::constructBookDomain(mgr, logger); + Rooted<model::Domain> domain = constructBookDomain(mgr, sys, logger); // Construct the document. Rooted<model::Document> doc = model::constructBookDocument(mgr, domain); |