Skip to content

Commit

Permalink
✅ add sharing to project factories for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
juanesarango committed Oct 24, 2023
1 parent 29347b3 commit 51f24bd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions isabl_cli/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class ProjectFactory(BaseFactory):
owner = factory.Sequence(lambda n: f"owner-{n}@test.com")
principal_investigator = factory.Sequence(lambda n: f"pi-{n}@test.com")
title = fuzzy.FuzzyText(length=20, chars=string.ascii_lowercase + " ")
sharing = {"can_share": [], "can_read": [], "is_public": True}


class CenterFactory(BaseFactory):
Expand Down

0 comments on commit 51f24bd

Please sign in to comment.