Skip to content

Commit

Permalink
update incremental config test to use start_value
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed Feb 15, 2025
1 parent b986f7e commit 719136d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 719136d

Please sign in to comment.