cleanup and update tests

This commit is contained in:
Konstantin Schaper
2020-08-25 18:08:31 +02:00
parent 6d409c65c0
commit 36231d077a
7 changed files with 91 additions and 32 deletions

View File

@@ -92,7 +92,7 @@ public class HgHookTagProvider implements HookTagProvider {
if (tagNames != null){
for ( String tagName : tagNames ){
logger.trace("found tag {} at changeset {}", tagName, c.getId());
tags.add(new Tag(tagName, c.getId()));
tags.add(new Tag(tagName, c.getId(), c.getDate()));
}
}
}