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:
parent
0b04768d83
commit
c1418c1619
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue