summaryrefslogtreecommitdiff
path: root/test/core/model/DomainTest.cpp
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-02-11 17:54:48 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-02-11 17:54:48 +0100
commit2f75ac166594b6bc2ea30901669304eca23174ec (patch)
tree0995fdfd968a6dfdae2ca93e83b76a2686a02abc /test/core/model/DomainTest.cpp
parent76df276a0c30013c8d7fa98bedc6b0fbadb56699 (diff)
changed semantics of default field, now referring to the only TREE field.
Diffstat (limited to 'test/core/model/DomainTest.cpp')
-rw-r--r--test/core/model/DomainTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/model/DomainTest.cpp b/test/core/model/DomainTest.cpp
index 59062f0..79b62f0 100644
--- a/test/core/model/DomainTest.cpp
+++ b/test/core/model/DomainTest.cpp
@@ -215,7 +215,7 @@ TEST(Descriptor, pathToAdvanced)
ASSERT_TRUE(path[1]->isa(&RttiTypes::StructuredClass));
ASSERT_EQ("B", path[1]->getName());
ASSERT_TRUE(path[2]->isa(&RttiTypes::FieldDescriptor));
- ASSERT_EQ("$default", path[2]->getName());
+ ASSERT_EQ("", path[2]->getName());
}
TEST(StructuredClass, isSubclassOf)