Skip to content

Commit 4d7ae86

Browse files
author
Franck Rupin
committed
Fix comments PR
- This commit addresses some comments from the review. - Remove commented line - rRrestore previous value
1 parent 9fd76e0 commit 4d7ae86

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ovsdb/client_integration_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func TestClientIntegration(t *testing.T) {
3030
defer c.Close()
3131

3232
// Cancel RPCs if they take too long.
33-
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
33+
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
3434
defer cancel()
3535

3636
t.Run("echo", func(t *testing.T) {
@@ -55,7 +55,6 @@ func TestClientIntegrationConcurrent(t *testing.T) {
5555
doneWG.Add(n)
5656

5757
// Block all goroutines until they're done spinning up.
58-
//sigC := make(chan struct{}, 0)
5958
sigC := make(chan struct{})
6059

6160
for i := 0; i < n; i++ {

0 commit comments

Comments
 (0)