From b781077ed9cdea70eb4a8320ff2648d33d71e904 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 1 Jul 2013 11:07:25 -0700 Subject: [PATCH] fmt --- packer/build.go | 2 +- packer/build_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packer/build.go b/packer/build.go index d16451118..7903fff15 100644 --- a/packer/build.go +++ b/packer/build.go @@ -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 diff --git a/packer/build_test.go b/packer/build_test.go index 576143727..19e91a466 100644 --- a/packer/build_test.go +++ b/packer/build_test.go @@ -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()