Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Dec 16, 2024
1 parent 458e9fe commit 4002a73
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/integration_tests/cloud/test_cloud_api_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
check_connector,
AirbyteError,
CLOUD_API_ROOT,
CLOUD_CONFIG_API_ROOT,
get_connector_image_override,
)
from airbyte_api.models import DestinationDuckdb, SourceFaker
Expand Down Expand Up @@ -264,7 +263,7 @@ def test_get_bearer_token(
"connector_id, connector_type, expect_success",
[
("f45dd701-d1f0-4e8e-97c4-2b89c40ac928", "source", True),
# ("......-....-....-....-............", "destination", True),
# ("......-....-....-............", "destination", True),
],
)
def test_check_connector(
Expand All @@ -281,7 +280,7 @@ def test_check_connector(
client_id=airbyte_cloud_client_id,
client_secret=airbyte_cloud_client_secret,
)
assert result is not None
assert result == expect_success
except NotImplementedError:
pytest.fail("check_connector function is not implemented")
except AirbyteError as e:
Expand Down Expand Up @@ -310,7 +309,7 @@ def test_get_connector_overrides(
client_id=airbyte_cloud_client_id,
client_secret=airbyte_cloud_client_secret,
)
assert result is not None
# assert result is not None # No overrides on this item
except NotImplementedError:
pytest.fail("check_connector function is not implemented")
except AirbyteError as e:
Expand Down

0 comments on commit 4002a73

Please sign in to comment.