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:
Paul Hinze 2016-03-21 10:39:20 -05:00
parent d1b8f28e2b
commit 567a9b9e06
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"
}