config: fix a conflicting test name

A public API TestNewRawConfig was added to easily create a raw config
for testing, but this conflicted with the test. Just rename it.
This commit is contained in:
Mitchell Hashimoto 2016-10-15 15:25:41 -07:00
parent e8516f259d
commit 5cd6898109
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ func TestNewRawConfig(t *testing.T) {
}
}
func TestRawConfig(t *testing.T) {
func TestRawConfig_basic(t *testing.T) {
raw := map[string]interface{}{
"foo": "${var.bar}",
}