config: update error string for new HIL merge

This commit is contained in:
Mitchell Hashimoto 2016-11-13 10:28:31 -08:00
parent 3c2e21701d
commit 15979435d6
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ func TestLoadFileEscapedQuotes(t *testing.T) {
t.Fatalf("expected syntax error as escaped quotes are no longer supported")
}
if !strings.Contains(err.Error(), "syntax error") {
if !strings.Contains(err.Error(), "parse error") {
t.Fatalf("expected \"syntax error\", got: %s", err)
}
}