Merge pull request #5752 from hashicorp/phinze/remove-missing-equals-test

config: remove missing equals test to fix build
This commit is contained in:
Paul Hinze 2016-03-21 10:49:07 -05:00
commit 7e3e3b20b1
2 changed files with 0 additions and 10 deletions

View File

@ -242,13 +242,6 @@ func TestConfigValidate_outputBadField(t *testing.T) {
}
}
func TestConfigValidate_outputMissingEquals(t *testing.T) {
c := testConfig(t, "validate-output-missing-equals")
if err := c.Validate(); err == nil {
t.Fatal("should not be valid")
}
}
func TestConfigValidate_pathVar(t *testing.T) {
c := testConfig(t, "validate-path-var")
if err := c.Validate(); err != nil {

View File

@ -1,3 +0,0 @@
output "whoops" {
value "wheresmyequals"
}