From 0923217472ea1620a896c3425903929fe8d0f901 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong Date: Tue, 12 Nov 2024 14:11:38 -0500 Subject: [PATCH] Update tests --- .../experimental/test_asset_specs.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_asset_specs.py b/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_asset_specs.py index c685437d4d556..b36cf38cb40a8 100644 --- a/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_asset_specs.py +++ b/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_asset_specs.py @@ -23,14 +23,11 @@ def test_fetch_fivetran_workspace_data( def test_translator_spec( - account_id: str, - api_key: str, - api_secret: str, fetch_workspace_data_api_mocks: responses.RequestsMock, ) -> None: - with environ({"FIVETRAN_API_KEY": api_key, "FIVETRAN_API_SECRET": api_secret}): + with environ({"FIVETRAN_API_KEY": TEST_API_KEY, "FIVETRAN_API_SECRET": TEST_API_SECRET}): resource = FivetranWorkspace( - account_id=account_id, + account_id=TEST_ACCOUNT_ID, api_key=EnvVar("FIVETRAN_API_KEY"), api_secret=EnvVar("FIVETRAN_API_SECRET"), )