Skip to content

Commit cd13981

Browse files
committed
refactor: Creator --> Person
1 parent c0468b4 commit cd13981

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/core/models/test_shacl_schema.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ def test_dataset_shacl(tmpdir, runner, project, client):
8282

8383
def test_project_shacl(project, client):
8484
"""Test project metadata structure."""
85-
from renku.core.models.creators import Creator
85+
from renku.core.models.provenance.agents import Person
8686

8787
path = Path(
8888
__file__
8989
).parent.parent.parent / 'fixtures' / 'force_project_shacl.json'
9090

9191
project = client.project
92-
project.creator = Creator(email='[email protected]', name='Johnny Doe')
92+
project.creator = Person(email='[email protected]', name='Johnny Doe')
9393

9494
g = project.asjsonld()
9595
rdf = pyld.jsonld.to_rdf(

0 commit comments

Comments
 (0)