File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/integration/connectors/weaviate Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11import pytest
22
33from test .integration .connectors .utils .constants import DESTINATION_TAG , VECTOR_DB_TAG
4- from unstructured_ingest .error import DestinationConnectionError , ValueError
4+ from unstructured_ingest .error import DestinationConnectionError , ValueError as IngestValueError
55from unstructured_ingest .processes .connectors .weaviate .cloud import (
66 CONNECTOR_TYPE ,
77 CloudWeaviateAccessConfig ,
1313
1414@pytest .mark .tags (CONNECTOR_TYPE , DESTINATION_TAG , VECTOR_DB_TAG )
1515def test_weaviate_failing_connection_config ():
16- with pytest .raises (ValueError ):
16+ with pytest .raises (IngestValueError ):
1717 CloudWeaviateConnectionConfig (
1818 access_config = CloudWeaviateAccessConfig (api_key = "my key" , password = "password" ),
1919 username = "username" ,
You can’t perform that action at this time.
0 commit comments