Merge pull request #5752 from hashicorp/phinze/remove-missing-equals-test
config: remove missing equals test to fix build
This commit is contained in:
commit
7e3e3b20b1
|
@ -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 {
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
output "whoops" {
|
||||
value "wheresmyequals"
|
||||
}
|
Loading…
Reference in New Issue