Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcnunes committed Jul 25, 2018
1 parent f0b6bfb commit 2f01106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gaper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ func TestGaperRestartRunFail(t *testing.T) {
mockRunner.AssertExpectations(t)
}

func TestGaperFailBadBuildArgsMerged(t *testing.T) {
func TestGaperFailBadBuildArgsMerged(t *testing.T) { // nolint: dupl
args := &Config{
BuildArgsMerged: "foo '",
}
Expand All @@ -280,7 +280,7 @@ func TestGaperFailBadBuildArgsMerged(t *testing.T) {
assert.Equal(t, "invalid command line string", err.Error())
}

func TestGaperFailBadProgramArgsMerged(t *testing.T) {
func TestGaperFailBadProgramArgsMerged(t *testing.T) { // nolint: dupl
args := &Config{
ProgramArgsMerged: "foo '",
}
Expand Down

0 comments on commit 2f01106

Please sign in to comment.