From 692eadd763e231edabaab6410de53c7a58fd014e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 1 Dec 2016 18:02:39 -0500 Subject: [PATCH] config: nitpicks from #10475 /cc @grubernaut - we put stdlibs above 3rd party libs separated by a space --- config/interpolate_funcs.go | 2 +- config/interpolate_funcs_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/interpolate_funcs.go b/config/interpolate_funcs.go index 57c811d389..c7bcafc70c 100644 --- a/config/interpolate_funcs.go +++ b/config/interpolate_funcs.go @@ -15,13 +15,13 @@ import ( "sort" "strconv" "strings" + "time" "github.com/apparentlymart/go-cidr/cidr" "github.com/hashicorp/go-uuid" "github.com/hashicorp/hil" "github.com/hashicorp/hil/ast" "github.com/mitchellh/go-homedir" - "time" ) // stringSliceToVariableValue converts a string slice into the value diff --git a/config/interpolate_funcs_test.go b/config/interpolate_funcs_test.go index 548993b731..a6b7757d52 100644 --- a/config/interpolate_funcs_test.go +++ b/config/interpolate_funcs_test.go @@ -6,10 +6,10 @@ import ( "os" "reflect" "testing" + "time" "github.com/hashicorp/hil" "github.com/hashicorp/hil/ast" - "time" ) func TestInterpolateFuncZipMap(t *testing.T) {