Skip to content

Commit

Permalink
Fix tap-tester issue
Browse files Browse the repository at this point in the history
  • Loading branch information
prijendev committed Oct 25, 2024
1 parent 51e8276 commit 18b8449
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions tests/test_hubspot_interrupted_sync_offset.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ def name():

def get_properties(self):
return {
'start_date' : '2021-10-01T00:00:00Z'
'start_date' : datetime.strftime(
datetime.today()-timedelta(days=3), self.START_DATE_FORMAT
),
}


Expand All @@ -143,8 +145,10 @@ def name():
return "tt_hubspot_interrupt_deals"

def get_properties(self):
return {
'start_date' : '2021-10-10T00:00:00Z'
return {
'start_date' : datetime.strftime(
datetime.today()-timedelta(days=3), self.START_DATE_FORMAT
),
}

def stream_to_interrupt(self):
Expand All @@ -164,7 +168,9 @@ def name():

def get_properties(self):
return {
'start_date' : '2023-12-31T00:00:00Z'
'start_date' : datetime.strftime(
datetime.today()-timedelta(days=3), self.START_DATE_FORMAT
),
}

def stream_to_interrupt(self):
Expand Down

0 comments on commit 18b8449

Please sign in to comment.