Fix indent with go fmt (#531)

Co-authored-by: sinozu <[email protected]>
This commit is contained in:
Shin Uozumi
2021-02-17 11:47:59 -08:00
committed by GitHub
co-authored by sinozu
parent 60669808a4
commit 9bf37fb868
+7 -8
View File
@@ -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)
}