From 05442c2eb793989ba4d8792280489c42c4272da6 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong Date: Mon, 25 Nov 2024 07:50:15 -0500 Subject: [PATCH] Update test --- .../dagster_fivetran_tests/experimental/test_resources.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_resources.py b/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_resources.py index 9513d814218d5..bf98f9cf6fad9 100644 --- a/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_resources.py +++ b/python_modules/libraries/dagster-fivetran/dagster_fivetran_tests/experimental/test_resources.py @@ -126,7 +126,8 @@ def test_sync_and_poll(n_polls, succeed_at_end, connector_id): test_failed_at = TEST_PREVIOUS_MAX_TIME_STR # Set `failed_at` as more recent that `succeeded_at` if the sync and poll process is expected to fail if not succeed_at_end: - test_succeeded_at, test_failed_at = test_failed_at, test_succeeded_at + test_succeeded_at = TEST_PREVIOUS_MAX_TIME_STR + test_failed_at = TEST_MAX_TIME_STR # Create mock responses to mock full sync and poll behavior, used only in this test def _mock_interaction():