This commit is contained in:
Mitchell Hashimoto 2013-07-01 11:07:25 -07:00
parent 8f74ff170d
commit 12f627197e
2 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ func (b *coreBuild) Prepare() (err error) {
packerConfig := map[string]interface{}{
BuildNameConfigKey: b.name,
DebugConfigKey: b.debug,
DebugConfigKey: b.debug,
}
// Prepare the builder

View File

@ -41,7 +41,7 @@ func TestBuild_Prepare(t *testing.T) {
packerConfig := map[string]interface{}{
BuildNameConfigKey: "test",
DebugConfigKey: false,
DebugConfigKey: false,
}
build := testBuild()
@ -87,7 +87,7 @@ func TestBuild_Prepare_Debug(t *testing.T) {
packerConfig := map[string]interface{}{
BuildNameConfigKey: "test",
DebugConfigKey: true,
DebugConfigKey: true,
}
build := testBuild()