From ee57d1cd90ad370b77dc372f075feb89e9eca3af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarek=20Ziad=C3=A9?= Date: Wed, 9 Aug 2023 08:11:54 +0200 Subject: [PATCH] fix the name --- nucliadb_node_binding/tests/integration/test_indexing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nucliadb_node_binding/tests/integration/test_indexing.py b/nucliadb_node_binding/tests/integration/test_indexing.py index 8446a7e1a1..d221afef72 100644 --- a/nucliadb_node_binding/tests/integration/test_indexing.py +++ b/nucliadb_node_binding/tests/integration/test_indexing.py @@ -33,7 +33,7 @@ from nucliadb_node_binding import NodeReader, NodeWriter # type: ignore -class NucliaCluster: +class IndexNode: def __init__(self): self.writer = NodeWriter() self.reader = NodeReader() @@ -74,7 +74,7 @@ def call_search_api(self, name, request, resp_klass): @pytest.mark.asyncio async def test_set_and_search(data_path): - cluster = NucliaCluster() + cluster = IndexNode() shard_id = cluster.create_shard("test-kbid") cluster.create_resource(shard_id) @@ -90,7 +90,7 @@ async def test_set_and_search(data_path): @pytest.mark.asyncio async def test_set_and_document_search(data_path): - cluster = NucliaCluster() + cluster = IndexNode() shard_id = cluster.create_shard("test-kbid") cluster.create_resource(shard_id)