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).
This commit is contained in:
kolaente 2026-03-23 16:18:52 +01:00 committed by kolaente
parent 0b04768d83
commit c1418c1619
1 changed files with 2 additions and 2 deletions

View File

@ -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