diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-03 20:20:59 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-03-03 20:20:59 +0100 |
commit | ec758436a01903ded6ec5951fa1fc5d2fe062239 (patch) | |
tree | 4dd95626d1efce4bf8cd8c0f6bb7fda8d6a6b968 /test/formats/osxml/OsxmlEventParserTest.cpp | |
parent | 42c0480b4fbf80afa0c5b13650a0af74311d7202 (diff) |
Added unit tests for annotation handling
Diffstat (limited to 'test/formats/osxml/OsxmlEventParserTest.cpp')
-rw-r--r-- | test/formats/osxml/OsxmlEventParserTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/formats/osxml/OsxmlEventParserTest.cpp b/test/formats/osxml/OsxmlEventParserTest.cpp index d4e9443..6e1dddf 100644 --- a/test/formats/osxml/OsxmlEventParserTest.cpp +++ b/test/formats/osxml/OsxmlEventParserTest.cpp @@ -58,10 +58,10 @@ public: } void annotationEnd(const Variant &className, - const Variant &elementName) override + const Variant::mapType &args) override { events.emplace_back(OsxmlEvent::ANNOTATION_END, - Variant::arrayType{className, elementName}); + Variant::arrayType{className, args}); } void rangeEnd() override |