Browse Source

fix TestVolumeServerEvacuate

pull/3338/head
Konstantin Lebedev 3 years ago
parent
commit
39eaf426f8
  1. 7
      weed/shell/command_volume_server_evacuate_test.go

7
weed/shell/command_volume_server_evacuate_test.go

@ -6,12 +6,11 @@ import (
)
func TestVolumeServerEvacuate(t *testing.T) {
topologyInfo := parseOutput(topoData)
c := commandVolumeServerEvacuate{}
c.topologyInfo = parseOutput(topoData)
volumeServer := "192.168.1.4:8080"
c := commandVolumeServerEvacuate{}
if err := c.evacuateNormalVolumes(nil, topologyInfo, volumeServer, true, false, os.Stdout); err != nil {
if err := c.evacuateNormalVolumes(nil, volumeServer, true, false, os.Stdout); err != nil {
t.Errorf("evacuate: %v", err)
}

Loading…
Cancel
Save