Skip to content

Commit d2bea77

Browse files
committed
Format code
1 parent a048572 commit d2bea77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dump_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
)
88

99
var tabTest = []test{
10-
test{"name", 1, 0.000001},
10+
{"name", 1, 0.000001},
1111
}
1212

1313
var tabTestNoID = []testNoID{
14-
testNoID{"name", 1, 0.000001},
14+
{"name", 1, 0.000001},
1515
}
1616

1717
func TestDumpToFileEmptyName(t *testing.T) {
@@ -128,7 +128,7 @@ type Demo struct { // A structure with tags
128128
func TestREADMEExample(t *testing.T) {
129129

130130
tab := []Demo{ // Create the slice where to put the file content
131-
Demo{
131+
{
132132
Name: "some name",
133133
ID: 1,
134134
Num: 0.000001,

0 commit comments

Comments
 (0)