Skip to content

Commit

Permalink
Updates filename of test_config_callback to test_config_change_callback
Browse files Browse the repository at this point in the history
  • Loading branch information
tcboles committed Nov 5, 2024
1 parent 99a4c44 commit 38accfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airbyte/destinations/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_destination(
docker_image: str | bool | None = None,
use_host_network: bool = False,
install_if_missing: bool = True,
) -> Destination:
) -> Destination: # pylint: disable=too-many-arguments
"""Get a connector by name and version.
Args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
from __future__ import annotations

import pytest
from typing import Any
from unittest.mock import patch
from airbyte import get_source, get_destination
from airbyte import get_source, get_destination, Source, Destination
from airbyte.destinations.base import Destination
from airbyte_protocol.models import AirbyteMessage, Type, AirbyteControlMessage, OrchestratorType, AirbyteControlConnectorConfigMessage

Expand Down

0 comments on commit 38accfb

Please sign in to comment.