Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Aug 1, 2017
1 parent fc5f83c commit fb3c997
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions azurerm/response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ func TestResponseNotFound_DroppedConnection(t *testing.T) {

func TestResponseNotFound_StatusCodes(t *testing.T) {
testCases := []struct {
statusCode int
statusCode int
expectedResult bool
}{
{ http.StatusOK, false, },
{ http.StatusInternalServerError, false },
{ http.StatusNotFound, true },
{http.StatusOK, false},
{http.StatusInternalServerError, false},
{http.StatusNotFound, true},
}

for _, test := range testCases {
Expand All @@ -36,4 +36,4 @@ func TestResponseNotFound_StatusCodes(t *testing.T) {
test.expectedResult, test.statusCode, result)
}
}
}
}

0 comments on commit fb3c997

Please sign in to comment.