Skip to content

Commit

Permalink
fix: missing data for the 7th day ago!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Aug 23, 2024
1 parent e812390 commit 9a2083b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ async def test_analyzer_week_period_run_once_empty_analytics(self):
rawinfo_samples = []

# generating random rawinfo data
for i in range(160):
# for past 7 days (168 / 24 = 7)
for i in range(168):
author = np.random.choice(acc_id)
replied_user = np.random.choice(acc_id)
# not producing any self-interactions
Expand Down

0 comments on commit 9a2083b

Please sign in to comment.