Skip to content

Commit 7fd20eb

Browse files
committed
ch12/exercise12.1/display_test.go: gofmt -s
1 parent 8add931 commit 7fd20eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ch12/exercise12.1/display_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313

1414
func TestArrayKey(t *testing.T) {
1515
Display("ArrayKey", map[[3]int]string{
16-
[3]int{1, 2, 3}: "123",
17-
[3]int{4, 5, 6}: "456",
18-
[3]int{7, 8, 9}: "789",
16+
{1, 2, 3}: "123",
17+
{4, 5, 6}: "456",
18+
{7, 8, 9}: "789",
1919
})
2020
}
2121

0 commit comments

Comments
 (0)