aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_volume_server_evacuate_test.go
diff options
context:
space:
mode:
authorKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-07-12 14:56:34 +0500
committerKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-07-12 14:56:34 +0500
commit6622240df70c04b381b7f6daaf9dd07494b10701 (patch)
tree954b29ab0ff941895d19374123490ecee2e5c0f6 /weed/shell/command_volume_server_evacuate_test.go
parent8372721a62f2809ce99aaaf31f4bad5bbf2d99b1 (diff)
downloadseaweedfs-6622240df70c04b381b7f6daaf9dd07494b10701.tar.xz
seaweedfs-6622240df70c04b381b7f6daaf9dd07494b10701.zip
fix TestVolumeServerEvacuate
Diffstat (limited to 'weed/shell/command_volume_server_evacuate_test.go')
-rw-r--r--weed/shell/command_volume_server_evacuate_test.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/weed/shell/command_volume_server_evacuate_test.go b/weed/shell/command_volume_server_evacuate_test.go
index 2cdb94a60..4563f38ba 100644
--- a/weed/shell/command_volume_server_evacuate_test.go
+++ b/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)
}