Skip to content

Commit

Permalink
Update naming convention path
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed Nov 14, 2023
1 parent 25202d1 commit 69b3bc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/weaviate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ def capabilities() -> DestinationCapabilitiesContext:
caps.max_text_data_type_length = 8 * 1024 * 1024
caps.is_max_text_data_type_length_in_bytes = False
caps.supports_ddl_transactions = False
caps.naming_convention = "dlt.destinations.weaviate.naming"
caps.naming_convention = "dlt.destinations.impl.weaviate.naming"

return caps
2 changes: 1 addition & 1 deletion tests/load/weaviate/test_weaviate_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def ci_client() -> Iterator[WeaviateClient]:

def make_client(naming_convention: str) -> Iterator[WeaviateClient]:
schema = Schema('test_schema', {
'names': f"dlt.destinations.weaviate.{naming_convention}",
'names': f"dlt.destinations.impl.weaviate.{naming_convention}",
'json': None
})
_client = get_client_instance(schema)
Expand Down

0 comments on commit 69b3bc5

Please sign in to comment.