From e31bdb26a8278e427a877ee1a5dd4ae8c0600124 Mon Sep 17 00:00:00 2001
From: Nicolas Dandrimont <nicolas@dandrimont.eu>
Date: Tue, 21 Jun 2022 14:35:03 +0200
Subject: [PATCH] Set object id when calling objstorage.add

We are removing support for the objstorage computing the object id itself.
---
 swh/dataset/test/test_orc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swh/dataset/test/test_orc.py b/swh/dataset/test/test_orc.py
index 7318953..590f655 100644
--- a/swh/dataset/test/test_orc.py
+++ b/swh/dataset/test/test_orc.py
@@ -327,7 +327,7 @@ def test_export_content_with_data(monkeypatch, tmpdir):
     obj_type = "content"
     objstorage = get_objstorage("memory")
     for content in TEST_OBJECTS[obj_type]:
-        objstorage.add(content.data)
+        objstorage.add(content=content.data, obj_id=content.sha1)
 
     def get_objstorage_mock(**kw):
         if kw.get("cls") == "mock":
-- 
GitLab