diff --git a/swh/model/hypothesis_strategies.py b/swh/model/hypothesis_strategies.py
index e2ca4c60bcdb6cab2c5b3c48683631289e52f465..3b046ca2224f105cac5bc6f0f0450ad44f994451 100644
--- a/swh/model/hypothesis_strategies.py
+++ b/swh/model/hypothesis_strategies.py
@@ -165,7 +165,6 @@ def snapshots(draw, *, min_size=0, max_size=100, only_objects=False):
                     name: branch.to_dict()
                     for (name, branch) in branches.items()}})
         except ValueError as e:
-            print(e.args)
             for (source, target) in e.args[1]:
                 branches[source] = draw(branch_targets(only_objects=True))
         else:
diff --git a/swh/model/identifiers.py b/swh/model/identifiers.py
index 486639e63560236c2e2b842623dd6e67f1fd0dc1..e7508ebcbbb4fbe05d1a5610725a2412750498ea 100644
--- a/swh/model/identifiers.py
+++ b/swh/model/identifiers.py
@@ -581,8 +581,6 @@ def snapshot_identifier(snapshot, *, ignore_unresolved=False):
             if target_id not in snapshot['branches'] or target_id == name:
                 unresolved.append((name, target_id))
         else:
-            print(name)
-            print(target)
             target_type = target['target_type'].encode()
             target_id = identifier_to_bytes(target['target'])