@@ -32,20 +32,20 @@ def test_run(self):
3232 # generate data for 'events' stream
3333 self .generate_data ()
3434
35- date_1 = '2020 -04-01T00:00:00Z'
36- date_2 = '2021 -10-08T00:00:00Z'
35+ date_1 = '2023 -04-01T00:00:00Z'
36+ date_2 = '2024 -10-08T00:00:00Z'
3737 expected_stream_1 = {'commits' }
3838 self .run_test (date_1 , date_2 , expected_stream_1 )
3939
40- date_2 = '2022 -07-13T00:00:00Z'
40+ date_2 = '2024 -07-13T00:00:00Z'
4141 expected_stream_2 = {'issue_milestones' }
4242 self .run_test (date_1 , date_2 , expected_stream_2 )
4343
44- date_2 = '2022 -05-06T00:00:00Z'
44+ date_2 = '2024 -05-06T00:00:00Z'
4545 expected_stream_3 = {'pr_commits' , 'review_comments' , 'reviews' }
4646 self .run_test (date_1 , date_2 , expected_stream_3 )
4747
48- date_2 = '2022 -01-27T00:00:00Z'
48+ date_2 = '2024 -01-27T00:00:00Z'
4949 expected_stream_4 = self .expected_streams ().difference (
5050 expected_stream_1 ,
5151 expected_stream_2 ,
@@ -58,10 +58,10 @@ def test_run(self):
5858 # `issues` doesn't have enough data in this range, so we skip it too
5959 self .run_test (date_1 , date_2 , expected_stream_4 )
6060
61- date_3 = '2023 -01-27T00:00:00Z'
61+ date_3 = '2024 -01-27T00:00:00Z'
6262 self .run_test (date_1 , date_3 , {"issues" })
6363
64- date_4 = '2023 -01-01T00:00:00Z'
64+ date_4 = '2024 -01-01T00:00:00Z'
6565 self .run_test (date_1 , date_4 , {'pull_requests' })
6666
6767 # As per the Documentation: https://docs.github.com/en/rest/reference/activity#events
@@ -209,7 +209,6 @@ def run_test(self, date_1, date_2, streams):
209209 self .assertTrue (primary_keys_sync_2 .issubset (primary_keys_sync_1 ))
210210
211211 else :
212-
213212 # Verify that the 2nd sync with a later start date replicates the same number of
214213 # records as the 1st sync.
215214 self .assertEqual (record_count_sync_2 , record_count_sync_1 )
0 commit comments