Skip to content

Commit

Permalink
chore(travis): running gofmt to fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Cryptophobia <[email protected]>
  • Loading branch information
Cryptophobia committed Jan 6, 2020
1 parent 1dae578 commit 227bc7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/gitreceive/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ type checkCase struct {

func TestCheckDurations(t *testing.T) {
cases := map[checkCase]checkCase{
checkCase{100, 300000, 500, 300000}: {100, 300000, 500, 300000},
checkCase{0, 300000, 500, 300000}: {100, 300000, 500, 300000},
checkCase{100, 300000, 0, 300000}: {100, 300000, 500, 300000},
checkCase{300000, 300000, 500, 300000}: {100, 300000, 500, 300000},
checkCase{100, 300000, 300000, 300000}: {100, 300000, 500, 300000},
{100, 300000, 500, 300000}: {100, 300000, 500, 300000},
{0, 300000, 500, 300000}: {100, 300000, 500, 300000},
{100, 300000, 0, 300000}: {100, 300000, 500, 300000},
{300000, 300000, 500, 300000}: {100, 300000, 500, 300000},
{100, 300000, 300000, 300000}: {100, 300000, 500, 300000},
}

var cnf Config
Expand Down

0 comments on commit 227bc7a

Please sign in to comment.