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
+3 -2
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 {