test(coderd/rbac): Increase TestFilter timeout (#7694)

This commit is contained in:
Mathias Fredriksson 2023-05-26 15:44:05 +03:00 committed by GitHub
parent e5add7292f
commit 0fd2ea4044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -249,8 +249,6 @@ func TestFilter(t *testing.T) {
localObjects := make([]fakeObject, len(objects))
copy(localObjects, objects)
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitMedium)
defer cancel()
auth := NewAuthorizer(prometheus.NewRegistry())
if actor.Scope == nil {
@ -258,6 +256,9 @@ func TestFilter(t *testing.T) {
actor.Scope = ScopeAll
}
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitLong)
defer cancel()
// Run auth 1 by 1
var allowedCount int
for i, obj := range localObjects {