Browse Source

integration: use cancel instead of close.

caoming 6 years ago
parent
commit
97509833e2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      integration/v3_alarm_test.go

+ 2 - 2
integration/v3_alarm_test.go

@@ -88,8 +88,8 @@ func TestV3StorageQuotaApply(t *testing.T) {
 		}
 		}
 	}
 	}
 
 
-	ctx, close := context.WithTimeout(context.TODO(), RequestWaitTimeout)
-	defer close()
+	ctx, cancel := context.WithTimeout(context.TODO(), RequestWaitTimeout)
+	defer cancel()
 
 
 	// small quota machine should reject put
 	// small quota machine should reject put
 	if _, err := kvc0.Put(ctx, &pb.PutRequest{Key: key, Value: smallbuf}); err == nil {
 	if _, err := kvc0.Put(ctx, &pb.PutRequest{Key: key, Value: smallbuf}); err == nil {