From 9b479dd3bb10da61989e71d22746430262c4b6d2 Mon Sep 17 00:00:00 2001 From: Brian Meek Date: Fri, 9 Sep 2022 19:04:37 -0700 Subject: [PATCH] Fix test checking which clients connected Signed-off-by: Brian Meek --- 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 7367c06dc..0b021803d 100644 --- a/userapi/storage/tables/stats_table_test.go +++ b/userapi/storage/tables/stats_table_test.go @@ -301,10 +301,10 @@ func Test_UserStatistics(t *testing.T) { }, R30UsersV2: map[string]int64{ "ios": 0, - "android": 0, - "web": 0, + "android": 1, + "web": 1, "electron": 0, - "all": 0, + "all": 2, }, AllUsers: 6, NonBridgedUsers: 5,