@@ -559,7 +559,7 @@ func TestCrudGenerateData(t *testing.T) {
559559 for i := 1010 ; i < 1020 ; i ++ {
560560 req := tarantool .NewDeleteRequest (spaceName ).
561561 Key ([]interface {}{uint (i )})
562- conn .Do (req ).Get ()
562+ _ , _ = conn .Do (req ).Get ()
563563 }
564564
565565 data , err := conn .Do (testCase .req ).Get ()
@@ -571,7 +571,7 @@ func TestCrudGenerateData(t *testing.T) {
571571 for i := 1010 ; i < 1020 ; i ++ {
572572 req := tarantool .NewDeleteRequest (spaceName ).
573573 Key ([]interface {}{uint (i )})
574- conn .Do (req ).Get ()
574+ _ , _ = conn .Do (req ).Get ()
575575 }
576576 })
577577 }
@@ -590,7 +590,7 @@ func TestCrudProcessData(t *testing.T) {
590590 for i := 1010 ; i < 1020 ; i ++ {
591591 req := tarantool .NewDeleteRequest (spaceName ).
592592 Key ([]interface {}{uint (i )})
593- conn .Do (req ).Get ()
593+ _ , _ = conn .Do (req ).Get ()
594594 }
595595 })
596596 }
@@ -799,7 +799,7 @@ func TestBoolResult(t *testing.T) {
799799 for i := 1010 ; i < 1020 ; i ++ {
800800 req := tarantool .NewDeleteRequest (spaceName ).
801801 Key ([]interface {}{uint (i )})
802- conn .Do (req ).Get ()
802+ _ , _ = conn .Do (req ).Get ()
803803 }
804804}
805805
@@ -824,7 +824,7 @@ func TestNumberResult(t *testing.T) {
824824 for i := 1010 ; i < 1020 ; i ++ {
825825 req := tarantool .NewDeleteRequest (spaceName ).
826826 Key ([]interface {}{uint (i )})
827- conn .Do (req ).Get ()
827+ _ , _ = conn .Do (req ).Get ()
828828 }
829829}
830830
@@ -869,7 +869,7 @@ func TestBaseResult(t *testing.T) {
869869 for i := 1010 ; i < 1020 ; i ++ {
870870 req := tarantool .NewDeleteRequest (spaceName ).
871871 Key ([]interface {}{uint (i )})
872- conn .Do (req ).Get ()
872+ _ , _ = conn .Do (req ).Get ()
873873 }
874874}
875875
@@ -914,7 +914,7 @@ func TestManyResult(t *testing.T) {
914914 for i := 1010 ; i < 1020 ; i ++ {
915915 req := tarantool .NewDeleteRequest (spaceName ).
916916 Key ([]interface {}{uint (i )})
917- conn .Do (req ).Get ()
917+ _ , _ = conn .Do (req ).Get ()
918918 }
919919}
920920
@@ -1130,7 +1130,7 @@ func TestFetchLatestMetadataOption(t *testing.T) {
11301130 for i := 1010 ; i < 1020 ; i ++ {
11311131 req := tarantool .NewDeleteRequest (spaceName ).
11321132 Key ([]interface {}{uint (i )})
1133- conn .Do (req ).Get ()
1133+ _ , _ = conn .Do (req ).Get ()
11341134 }
11351135
11361136 resp := crud.Result {}
@@ -1147,7 +1147,7 @@ func TestFetchLatestMetadataOption(t *testing.T) {
11471147 for i := 1010 ; i < 1020 ; i ++ {
11481148 req := tarantool .NewDeleteRequest (spaceName ).
11491149 Key ([]interface {}{uint (i )})
1150- conn .Do (req ).Get ()
1150+ _ , _ = conn .Do (req ).Get ()
11511151 }
11521152 })
11531153 }
@@ -1283,7 +1283,7 @@ func TestNoreturnOption(t *testing.T) {
12831283 for i := 1010 ; i < 1020 ; i ++ {
12841284 req := tarantool .NewDeleteRequest (spaceName ).
12851285 Key ([]interface {}{uint (i )})
1286- conn .Do (req ).Get ()
1286+ _ , _ = conn .Do (req ).Get ()
12871287 }
12881288
12891289 data , err := conn .Do (testCase .req ).Get ()
@@ -1306,7 +1306,7 @@ func TestNoreturnOption(t *testing.T) {
13061306 for i := 1010 ; i < 1020 ; i ++ {
13071307 req := tarantool .NewDeleteRequest (spaceName ).
13081308 Key ([]interface {}{uint (i )})
1309- conn .Do (req ).Get ()
1309+ _ , _ = conn .Do (req ).Get ()
13101310 }
13111311 })
13121312 }
@@ -1321,7 +1321,7 @@ func TestNoreturnOptionTyped(t *testing.T) {
13211321 for i := 1010 ; i < 1020 ; i ++ {
13221322 req := tarantool .NewDeleteRequest (spaceName ).
13231323 Key ([]interface {}{uint (i )})
1324- conn .Do (req ).Get ()
1324+ _ , _ = conn .Do (req ).Get ()
13251325 }
13261326
13271327 resp := crud.Result {}
@@ -1342,7 +1342,7 @@ func TestNoreturnOptionTyped(t *testing.T) {
13421342 for i := 1010 ; i < 1020 ; i ++ {
13431343 req := tarantool .NewDeleteRequest (spaceName ).
13441344 Key ([]interface {}{uint (i )})
1345- conn .Do (req ).Get ()
1345+ _ , _ = conn .Do (req ).Get ()
13461346 }
13471347 })
13481348 }
0 commit comments