Merge commit 'f8b419a4c19dfb09ba47d91c68162b32a7044181'

This commit is contained in:
Brian Meek 2022-09-09 17:45:15 -07:00
commit dd07e739b6

View file

@ -283,6 +283,7 @@ func Test_UserStatistics(t *testing.T) {
t.Fatalf("unable to update daily visits stats: %v", err)
}
}
gotStats, _, err := statsDB.UserStatistics(ctx, nil)
if err != nil {
t.Fatalf("unexpected error: %v", err)
@ -300,10 +301,10 @@ func Test_UserStatistics(t *testing.T) {
},
R30UsersV2: map[string]int64{
"ios": 0,
"android": 1,
"web": 1,
"android": 0,
"web": 0,
"electron": 0,
"all": 2,
"all": 0,
},
AllUsers: 6,
NonBridgedUsers: 5,