Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maximearmstrong committed Nov 8, 2024
1 parent a0aa926 commit 7bbe79d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,10 @@ def fetch_workspace_data_api_mocks_fixture(
name="all_api_mocks",
)
def all_api_mocks_fixture(
connector_id: str, destination_id: str, group_id: str, fetch_workspace_data_api_mocks: responses.RequestsMock
connector_id: str,
destination_id: str,
group_id: str,
fetch_workspace_data_api_mocks: responses.RequestsMock,
) -> responses.RequestsMock:
fetch_workspace_data_api_mocks.add(
method=responses.GET,
Expand All @@ -447,5 +450,3 @@ def all_api_mocks_fixture(
status=200,
)
yield fetch_workspace_data_api_mocks


Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
from dagster_fivetran import FivetranWorkspace


def test_fetch_fivetran_workspace_data(fetch_workspace_data_api_mocks: responses.RequestsMock) -> None:
def test_fetch_fivetran_workspace_data(
fetch_workspace_data_api_mocks: responses.RequestsMock,
) -> None:
api_key = uuid.uuid4().hex
api_secret = uuid.uuid4().hex

Expand Down

0 comments on commit 7bbe79d

Please sign in to comment.