Skip to content

Commit b862d50

Browse files
committed
fix: prevent flake by increasing context deadline
1 parent 2aa7936 commit b862d50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/users_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ func TestPaginatedUsers(t *testing.T) {
17891789
t.Parallel()
17901790

17911791
// This test takes longer than a long time.
1792-
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitLong*2)
1792+
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitLong*3)
17931793
defer cancel()
17941794

17951795
assertPagination(ctx, t, client, tt.limit, tt.allUsers, tt.opt)

0 commit comments

Comments
 (0)