Merge pull request #8304 from alrs/remove-dead-openstack-test-function

builder/openstack: remove dead testConfig() function
This commit is contained in:
Adrien Delorme 2019-11-01 11:06:50 +01:00 committed by GitHub
commit 86e24df947
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 12 deletions

View File

@ -6,18 +6,6 @@ import (
"github.com/hashicorp/packer/packer"
)
func testConfig() map[string]interface{} {
return map[string]interface{}{
"username": "foo",
"password": "bar",
"region": "DFW",
"image_name": "foo",
"source_image": "foo",
"flavor": "foo",
"ssh_username": "root",
}
}
func TestBuilder_ImplementsBuilder(t *testing.T) {
var raw interface{}
raw = &Builder{}