@@ -40,7 +40,7 @@ func TestProjectCategoryCreate(t *testing.T) {
4040 for _ , tt := range tests {
4141 t .Run (tt .name , func (t * testing.T ) {
4242 ctx := t .Context ()
43- ctx , cancel := context .WithTimeout (ctx , 5 * time .Second )
43+ ctx , cancel := context .WithTimeout (ctx , 10 * time .Second )
4444 t .Cleanup (cancel )
4545
4646 projectCategory , err := projects .ProjectCategoryCreate (ctx , engine , tt .input )
@@ -99,7 +99,7 @@ func TestProjectCategoryUpdate(t *testing.T) {
9999 for _ , tt := range tests {
100100 t .Run (tt .name , func (t * testing.T ) {
101101 ctx := t .Context ()
102- ctx , cancel := context .WithTimeout (ctx , 5 * time .Second )
102+ ctx , cancel := context .WithTimeout (ctx , 10 * time .Second )
103103 t .Cleanup (cancel )
104104
105105 if _ , err := projects .ProjectCategoryUpdate (ctx , engine , tt .input ); err != nil {
@@ -120,7 +120,7 @@ func TestProjectCategoryDelete(t *testing.T) {
120120 }
121121
122122 ctx := t .Context ()
123- ctx , cancel := context .WithTimeout (ctx , 5 * time .Second )
123+ ctx , cancel := context .WithTimeout (ctx , 10 * time .Second )
124124 t .Cleanup (cancel )
125125
126126 _ , err = projects .ProjectCategoryDelete (ctx , engine , projects .NewProjectCategoryDeleteRequest (projectCategoryID ))
@@ -141,7 +141,7 @@ func TestProjectCategoryGet(t *testing.T) {
141141 defer projectCategoryCleanup ()
142142
143143 ctx := t .Context ()
144- ctx , cancel := context .WithTimeout (ctx , 5 * time .Second )
144+ ctx , cancel := context .WithTimeout (ctx , 10 * time .Second )
145145 t .Cleanup (cancel )
146146
147147 _ , err = projects .ProjectCategoryGet (ctx , engine , projects .NewProjectCategoryGetRequest (projectCategoryID ))
@@ -171,7 +171,7 @@ func TestProjectCategoryList(t *testing.T) {
171171 for _ , tt := range tests {
172172 t .Run (tt .name , func (t * testing.T ) {
173173 ctx := t .Context ()
174- ctx , cancel := context .WithTimeout (ctx , 5 * time .Second )
174+ ctx , cancel := context .WithTimeout (ctx , 10 * time .Second )
175175 t .Cleanup (cancel )
176176
177177 if _ , err := projects .ProjectCategoryList (ctx , engine , tt .input ); err != nil {
0 commit comments