Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
artonge committed May 6, 2020
1 parent a048572 commit d2bea77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dump_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (
)

var tabTest = []test{
test{"name", 1, 0.000001},
{"name", 1, 0.000001},
}

var tabTestNoID = []testNoID{
testNoID{"name", 1, 0.000001},
{"name", 1, 0.000001},
}

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

tab := []Demo{ // Create the slice where to put the file content
Demo{
{
Name: "some name",
ID: 1,
Num: 0.000001,
Expand Down

0 comments on commit d2bea77

Please sign in to comment.