Remove duplicate/redundant test

This commit is contained in:
DanHam 2018-06-08 11:13:32 +01:00
parent c8199458a7
commit eee16262b6
No known key found for this signature in database
GPG Key ID: 58E79AEDD6AA987E
1 changed files with 0 additions and 12 deletions

View File

@ -177,18 +177,6 @@ func TestBuilderPrepare_RemoteType(t *testing.T) {
if err != nil { if err != nil {
t.Fatalf("should not have error: %s", err) t.Fatalf("should not have error: %s", err)
} }
// Good
config["remote_type"] = "esx5"
config["remote_host"] = "foobar.example.com"
b = Builder{}
warns, err = b.Prepare(config)
if len(warns) > 0 {
t.Fatalf("bad: %#v", warns)
}
if err != nil {
t.Fatalf("should not have error: %s", err)
}
} }
func TestBuilderPrepare_Format(t *testing.T) { func TestBuilderPrepare_Format(t *testing.T) {