summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/node/attribute_white.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/node/attribute_white.cpp b/test/unit/node/attribute_white.cpp
index fe74130d1..4b0f1892f 100644
--- a/test/unit/node/attribute_white.cpp
+++ b/test/unit/node/attribute_white.cpp
@@ -78,7 +78,7 @@ TEST_F(TestNodeWhiteAttribute, attribute_ids)
// and that the next ID to be assigned is strictly greater than
// those that have already been assigned.
- unsigned lastId = attr::LastAttributeId<std::string, false>::getId();
+ unsigned lastId = attr::LastAttributeId<std::string>::getId();
ASSERT_LT(VarNameAttr::s_id, lastId);
ASSERT_LT(TestStringAttr1::s_id, lastId);
ASSERT_LT(TestStringAttr2::s_id, lastId);
@@ -87,7 +87,7 @@ TEST_F(TestNodeWhiteAttribute, attribute_ids)
ASSERT_NE(VarNameAttr::s_id, TestStringAttr2::s_id);
ASSERT_NE(TestStringAttr1::s_id, TestStringAttr2::s_id);
- lastId = attr::LastAttributeId<bool, false>::getId();
+ lastId = attr::LastAttributeId<bool>::getId();
ASSERT_LT(TestFlag1::s_id, lastId);
ASSERT_LT(TestFlag2::s_id, lastId);
ASSERT_LT(TestFlag3::s_id, lastId);
@@ -104,7 +104,7 @@ TEST_F(TestNodeWhiteAttribute, attribute_ids)
ASSERT_NE(TestFlag3::s_id, TestFlag5::s_id);
ASSERT_NE(TestFlag4::s_id, TestFlag5::s_id);
- lastId = attr::LastAttributeId<TypeNode, false>::getId();
+ lastId = attr::LastAttributeId<TypeNode>::getId();
ASSERT_LT(TypeAttr::s_id, lastId);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback