From 719136da28dc64287b7d5b70039ffbba3f4494f9 Mon Sep 17 00:00:00 2001 From: Anton Burnashev Date: Sat, 15 Feb 2025 03:21:10 +0200 Subject: [PATCH] update incremental config test to use start_value --- .../sources/rest_api/configurations/test_incremental_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sources/rest_api/configurations/test_incremental_config.py b/tests/sources/rest_api/configurations/test_incremental_config.py index 0527cc9c72..a6c13cb983 100644 --- a/tests/sources/rest_api/configurations/test_incremental_config.py +++ b/tests/sources/rest_api/configurations/test_incremental_config.py @@ -253,7 +253,7 @@ def epoch_to_date(epoch: str): callback = mocker.Mock(side_effect=epoch_to_date) incremental_obj = mocker.Mock() - incremental_obj.last_value = "1" + incremental_obj.start_value = "1" incremental_param = IncrementalParam(start="since", end=None) created_param = _set_incremental_params({}, incremental_obj, incremental_param, callback)