Skip to content

Commit

Permalink
fix ineffectual assignment to diskName
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Ojea committed Nov 17, 2021
1 parent fa3c4b9 commit d55af19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func TestCreateDisk_MultiZone(t *testing.T) {
nodeInformerSynced: func() bool { return true },
}

diskName := "disk"
var diskName string
diskType := DiskTypeStandard
const sizeGb int64 = 128

Expand Down Expand Up @@ -420,7 +420,7 @@ func TestDeleteDisk_DiffDiskMultiZone(t *testing.T) {
nodeZones: createNodeZones(zonesWithNodes),
nodeInformerSynced: func() bool { return true },
}
diskName := "disk"
var diskName string
diskType := DiskTypeSSD
const sizeGb int64 = 128

Expand Down

0 comments on commit d55af19

Please sign in to comment.