summaryrefslogtreecommitdiff
path: root/test/core/model/TestDomain.hpp
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-02-06 19:23:07 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-02-06 19:23:07 +0100
commit100a24a53c862201d1fcaaf81c6faacb694d37e9 (patch)
treefb113b21febf539b39e1aa8e1141caf607e8e696 /test/core/model/TestDomain.hpp
parent577ed0ad24dd9ddb3639569307473feed52a76d3 (diff)
changed name of text field from content to default.
Diffstat (limited to 'test/core/model/TestDomain.hpp')
-rw-r--r--test/core/model/TestDomain.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/model/TestDomain.hpp b/test/core/model/TestDomain.hpp
index 8b572a8..5ac510c 100644
--- a/test/core/model/TestDomain.hpp
+++ b/test/core/model/TestDomain.hpp
@@ -81,8 +81,8 @@ static Rooted<Domain> constructBookDomain(Manager &mgr,
// ... and has a primitive field.
Rooted<FieldDescriptor> text_field{new FieldDescriptor(
- mgr, text, domain->getTypesystems()[0]->getTypes()[0], "content",
- false)};
+ mgr, text, domain->getTypesystems()[0]->getTypes()[0],
+ DEFAULT_FIELD_NAME, false)};
return domain;
}