From d0644c02df3608192833d79f2e3f2ec3bb382a85 Mon Sep 17 00:00:00 2001 From: andrei Date: Wed, 1 Jun 2022 13:02:22 +0300 Subject: [PATCH] fixed Lazy() has no len --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 1c0c5fa..cacaf6d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -553,7 +553,7 @@ def tarantool_client(db_context): # TODO Here add TarantoolConnectionClass @pytest.fixture def utxo_collection(tarantool_client): - return tarantool_client.space("utxos") + return tarantool_client.get_space("utxos") @pytest.fixture