config: remove missing equals test to fix build
This is behavior that's covered in the parser now - and the error message is nicer to boot!
This commit is contained in:
parent
d1b8f28e2b
commit
567a9b9e06
|
@ -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