From a9a42eacc4275e75370dff76a17be478694da523 Mon Sep 17 00:00:00 2001
From: "Antoine R. Dumont (@ardumont)" <antoine.romain.dumont@gmail.com>
Date: Thu, 27 Feb 2020 16:27:40 +0100
Subject: [PATCH] model.hypothesis: Fix person generation

---
 swh/model/hypothesis_strategies.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/swh/model/hypothesis_strategies.py b/swh/model/hypothesis_strategies.py
index e6d830aa..163716b9 100644
--- a/swh/model/hypothesis_strategies.py
+++ b/swh/model/hypothesis_strategies.py
@@ -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()),
-- 
GitLab