From 3e1f255c1dd028e008f13a1ab9a2194aef9e2496 Mon Sep 17 00:00:00 2001 From: Shin Uozumi <7904748+sinozu@users.noreply.github.com> Date: Thu, 18 Feb 2021 04:47:59 +0900 Subject: [PATCH] Fix indent with go fmt (#531) Co-authored-by: sinozu --- act/common/cartesian_test.go | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/act/common/cartesian_test.go b/act/common/cartesian_test.go index 69a6e4e5..c49de06c 100644 --- a/act/common/cartesian_test.go +++ b/act/common/cartesian_test.go @@ -25,16 +25,15 @@ func TestCartesianProduct(t *testing.T) { assert.Contains(v, "baz") } - input = map[string][]interface{}{ + input = map[string][]interface{}{ "foo": {1, 2, 3, 4}, "bar": {}, "baz": {false, true}, - } - output = CartesianProduct(input) - assert.Len(output, 0) + } + output = CartesianProduct(input) + assert.Len(output, 0) - input = map[string][]interface{}{} - output = CartesianProduct(input) - assert.Len(output, 0) + input = map[string][]interface{}{} + output = CartesianProduct(input) + assert.Len(output, 0) } -