Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions api/testdata/aggregate_user_fixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ package testdata

var AggregateUser = []map[string]any{
{
"user_id": 1,
"follower_count": 100,
"following_count": 25,
"dominant_genre": "Electronic",
"track_save_count": 20,
"user_id": 1,
"follower_count": 100,
"following_count": 25,
"dominant_genre": "Electronic",
// Seed the pre-save baseline (0): the on_save trigger is delta-based
// (since #898) and increments this as the 3 track saves in SaveFixtures
// are inserted, yielding a final track_save_count of 3.
"track_save_count": 0,
},
{
"user_id": 2,
Expand Down
Loading
Loading