@@ -3710,13 +3710,6 @@ func TestClusterClient_SendPrimaryNodeOnlyButOneSlotAssigned(t *testing.T) {
3710
3710
t .Fatalf ("unexpected err %v" , err )
3711
3711
}
3712
3712
3713
- t .Run ("Do with no slot" , func (t * testing.T ) {
3714
- c := client .B ().Info ().Build ()
3715
- if v , err := client .Do (context .Background (), c ).ToString (); err != nil || v != "INFO" {
3716
- t .Fatalf ("unexpected response %v %v" , v , err )
3717
- }
3718
- })
3719
-
3720
3713
t .Run ("DoMulti Init Slot Operations" , func (t * testing.T ) {
3721
3714
c1 := client .B ().Multi ().Build ()
3722
3715
c2 := client .B ().Exec ().Build ()
@@ -6205,13 +6198,6 @@ func TestClusterClient_SendToOnlyPrimaryNodeWhenPrimaryNodeSelected(t *testing.T
6205
6198
t .Fatalf ("unexpected err %v" , err )
6206
6199
}
6207
6200
6208
- t .Run ("Do with no slot" , func (t * testing.T ) {
6209
- c := client .B ().Info ().Build ()
6210
- if v , err := client .Do (context .Background (), c ).ToString (); err != nil || v != "INFO" {
6211
- t .Fatalf ("unexpected response %v %v" , v , err )
6212
- }
6213
- })
6214
-
6215
6201
t .Run ("Do" , func (t * testing.T ) {
6216
6202
c := client .B ().Get ().Key ("Do" ).Build ()
6217
6203
if v , err := client .Do (context .Background (), c ).ToString (); err != nil || v != "GET Do" {
0 commit comments