Skip to content

Commit

Permalink
Merge pull request #31 from InVisionApp/dselans/gofmts
Browse files Browse the repository at this point in the history
gofmt -s on health_test.go
  • Loading branch information
dselans authored Jan 2, 2018
2 parents 4a8338f + 24838ab commit eff1e2b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions health_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func TestFailed(t *testing.T) {
checker1.StatusReturns(nil, nil)

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Expand Down Expand Up @@ -151,7 +151,7 @@ func TestFailed(t *testing.T) {
checker1.StatusReturns(nil, fmt.Errorf("things broke"))

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Expand Down Expand Up @@ -187,7 +187,7 @@ func TestState(t *testing.T) {
checker1.StatusReturns(nil, fmt.Errorf("things broke"))

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Expand Down Expand Up @@ -217,7 +217,7 @@ func TestState(t *testing.T) {
checker1.StatusReturns(nil, fmt.Errorf("things broke"))

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Expand Down Expand Up @@ -252,13 +252,13 @@ func TestStart(t *testing.T) {
checker2 := &fakes.FakeICheckable{}

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Fatal: false,
},
&Config{
{
Name: "bar",
Checker: checker2,
Interval: testCheckInterval,
Expand Down Expand Up @@ -383,13 +383,13 @@ func TestStartRunner(t *testing.T) {
checker2.StatusReturns(nil, checker2Error)

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Fatal: false,
},
&Config{
{
Name: "bar",
Checker: checker2,
Interval: testCheckInterval,
Expand Down Expand Up @@ -427,13 +427,13 @@ func TestStartRunner(t *testing.T) {
checker2.StatusReturns(nil, checker2Err)

cfgs := []*Config{
&Config{
{
Name: "foo",
Checker: checker1,
Interval: testCheckInterval,
Fatal: false,
},
&Config{
{
Name: "bar",
Checker: checker2,
Interval: testCheckInterval,
Expand Down

0 comments on commit eff1e2b

Please sign in to comment.