fixing issue of feature gate not being turned off properly

This commit is contained in:
Scott Creeley
2017-11-21 15:16:25 -05:00
parent c98aabccb0
commit 74fcd97c84
2 changed files with 6 additions and 6 deletions

View File

@@ -839,6 +839,8 @@ func TestAlphaVolumeModeCheck(t *testing.T) {
}
}
// make sure feature gate is turned off
toggleBlockVolumeFeature(false, t)
}
func TestAlphaFilteringVolumeModes(t *testing.T) {
@@ -933,6 +935,9 @@ func TestAlphaFilteringVolumeModes(t *testing.T) {
t.Errorf("Unexpected failure for scenario: %s - %+v", name, err)
}
}
// make sure feature gate is turned off
toggleBlockVolumeFeature(false, t)
}
func TestFindingPreboundVolumes(t *testing.T) {