diff --git a/gramps/gen/lib/eventroletype.py b/gramps/gen/lib/eventroletype.py index 2ab524ab0..5a97fe9f0 100644 --- a/gramps/gen/lib/eventroletype.py +++ b/gramps/gen/lib/eventroletype.py @@ -44,6 +44,7 @@ class EventRoleType(GrampsType): WITNESS = 7 FAMILY = 8 INFORMANT = 9 + GODPARENT = 10 _CUSTOM = CUSTOM _DEFAULT = PRIMARY @@ -60,6 +61,7 @@ class EventRoleType(GrampsType): (WITNESS, _("Witness"), "Witness"), (FAMILY, _("Family", "Role"), "Family"), (INFORMANT, _("Informant"), "Informant"), + (GODPARENT, _("Godparent"), "Godparent"), ] def __init__(self, value=None): diff --git a/gramps/plugins/test/tools_test.py b/gramps/plugins/test/tools_test.py index 80e6cf346..9d915eaf7 100644 --- a/gramps/plugins/test/tools_test.py +++ b/gramps/plugins/test/tools_test.py @@ -145,8 +145,8 @@ class ToolControl(unittest.TestCase): "1 invalid birth event name was fixed", "1 invalid death event name was fixed", "2 places were referenced, but not found", - "14 citations were referenced, but not found", - "17 sources were referenced, but not found", + "10 citations were referenced, but not found", + "13 sources were referenced, but not found", "9 Duplicated Gramps IDs fixed", "7 empty objects removed", "1 person objects",