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 2f548775f7bd5..6c1a83a7d7a0a 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 @@ -52,9 +52,6 @@ def test_translator_spec( first_asset_metadata = next(asset.metadata for asset in all_assets) assert FivetranMetadataSet.extract(first_asset_metadata).connector_id == "connector_id" - # clear the asset specs cache post test - # load_fivetran_asset_specs.cache_clear() - def test_cached_load_spec_single_resource( fetch_workspace_data_api_mocks: responses.RequestsMock, @@ -74,9 +71,6 @@ def test_cached_load_spec_single_resource( workspace.load_asset_specs() assert len(fetch_workspace_data_api_mocks.calls) == 4 - # clear the asset specs cache post test - # load_fivetran_asset_specs.cache_clear() - def test_cached_load_spec_multiple_resources( fetch_workspace_data_api_mocks: responses.RequestsMock, @@ -103,9 +97,6 @@ def test_cached_load_spec_multiple_resources( another_workspace.load_asset_specs() assert len(fetch_workspace_data_api_mocks.calls) == 4 + 4 - # clear the asset specs cache post test - # load_fivetran_asset_specs.cache_clear() - def test_cached_load_spec_with_asset_factory( fetch_workspace_data_api_mocks: responses.RequestsMock, @@ -121,6 +112,3 @@ def test_cached_load_spec_with_asset_factory( # then load_fivetran_asset_specs is called once per connector ID in fivetran_assets build_fivetran_assets_definitions(workspace=resource) assert len(fetch_workspace_data_api_mocks.calls) == 4 - - # clear the asset specs cache post test - # load_fivetran_asset_specs.cache_clear()