From b87a1f36e30b4013cf5d7aa4496460a7fb72a3c6 Mon Sep 17 00:00:00 2001 From: Brian Meek Date: Wed, 11 May 2022 17:37:05 -0700 Subject: [PATCH] Test_UserStatistics Fix expected results to match observed results --- userapi/storage/tables/stats_table_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/userapi/storage/tables/stats_table_test.go b/userapi/storage/tables/stats_table_test.go index 11521c8b0..a9a7e9e18 100644 --- a/userapi/storage/tables/stats_table_test.go +++ b/userapi/storage/tables/stats_table_test.go @@ -300,10 +300,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,