We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e363b0e commit 1b1f1e5Copy full SHA for 1b1f1e5
tests/unit/test_operations.py
@@ -183,7 +183,12 @@ def test_pseudonymize_deletes_non_name_attributes_apart_from_role_and_type(self)
183
graph = operations.pseudonymize(graph)
184
185
agent = next(graph.get_records(ProvAgent))
186
- expected_attributes = [PROV_ROLE, PROV_TYPE, qualified_name("name")]
+ expected_attributes = [
187
+ PROV_ROLE,
188
+ PROV_TYPE,
189
+ qualified_name("name"),
190
+ qualified_name("email"),
191
+ ]
192
assert all(
193
[(attr in expected_attributes) for (attr, _) in agent.extra_attributes]
194
)
0 commit comments