From a90ee056026efbb1d5c738f39736a231822d1327 Mon Sep 17 00:00:00 2001 From: Steinthor Palsson Date: Wed, 20 Sep 2023 22:23:05 -0400 Subject: [PATCH] Update test --- tests/load/weaviate/test_weaviate_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/load/weaviate/test_weaviate_client.py b/tests/load/weaviate/test_weaviate_client.py index 8ef3ddd660..0e234cd7a8 100644 --- a/tests/load/weaviate/test_weaviate_client.py +++ b/tests/load/weaviate/test_weaviate_client.py @@ -129,7 +129,7 @@ def test_case_insensitive_properties_create(ci_client: WeaviateClient) -> None: ci_client.update_stored_schema() _, table_columns = ci_client.get_storage_table("ColClass") # later column overwrites earlier one so: double - assert table_columns == {'col1': {'name': 'col1', 'data_type': 'double'}} + assert table_columns == {'col1': {'name': 'col1', 'data_type': 'double', 'precision': None, 'scale': None}} def test_case_sensitive_properties_add(client: WeaviateClient) -> None: