Skip to content
Snippets Groups Projects
Verified Commit a9a42eac authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

model.hypothesis: Fix person generation

parent f7f18a3f
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ def urls(draw):
def persons():
return builds(Person)
return builds(Person, email=optional(bytes), name=optional(bytes))
def timestamps():
......@@ -112,6 +112,8 @@ def revision_metadata():
def revisions():
return builds(
Revision,
author=persons(),
committer=persons(),
date=timestamps_with_timezone(),
committer_date=timestamps_with_timezone(),
parents=lists(sha1_git()),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment