diff --git a/tests/test_qdrant.py b/tests/test_qdrant.py index ee0b9aa..fe704cd 100644 --- a/tests/test_qdrant.py +++ b/tests/test_qdrant.py @@ -59,33 +59,6 @@ def test_qdrant_migrate( assert len(recs) == 100 -def test_qdrant_migrate_bad_url( - qdrant_collection_name: str, - postgres_connection_string: str, - cursor, - cli_runner: CliRunner, -) -> None: - - with warnings.catch_warnings(): - warnings.simplefilter("ignore") - - with pytest.raises(Exception) as url_checker: - result = cli_runner.invoke( - app, - [ - "qdrant", - "migrate", - qdrant_collection_name, - "", # Bad HTTP URL as intended. - "", # no API key needed in :memory: mode - postgres_connection_string, - ], - ) - raise result.exception - - assert "qdrant_url must be a valid HTTP URL string" in str(url_checker.value) - - def test_is_http_url(): with pytest.raises(AssertionError) as url_checker: assert is_http_url("https://supabase.com/"), "Invalid URL pattern"