From c1418c1619b15fb9a9707ab4820528e087ddd354 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 23 Mar 2026 16:18:52 +0100 Subject: [PATCH] test: update user count assertions for new locked user fixture Adjust TestListUsers assertions from 17 to 18 users to account for the newly added locked user fixture (user18). --- pkg/models/user_list_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/models/user_list_test.go b/pkg/models/user_list_test.go index 616818b7c..7c4063c93 100644 --- a/pkg/models/user_list_test.go +++ b/pkg/models/user_list_test.go @@ -58,7 +58,7 @@ func TestListUsers(t *testing.T) { all, err := user.ListAllUsers(s) require.NoError(t, err) - assert.Len(t, all, 17) + assert.Len(t, all, 18) }) t.Run("no search term", func(t *testing.T) { db.LoadAndAssertFixtures(t) @@ -171,7 +171,7 @@ func TestListUsers(t *testing.T) { MatchFuzzily: true, }) require.NoError(t, err) - assert.Len(t, all, 17) + assert.Len(t, all, 18) }) // External team discoverability bypass tests