Skip to content

Commit

Permalink
appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseduffield committed Dec 30, 2022
1 parent 89ba3a3 commit 6c3671f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/integration/tests/filter_by_path/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ var CliArg = NewIntegrationTest(NewIntegrationTestArgs{
commonSetup(shell)
},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
postFilterTest(t, keys)
postFilterTest(t)
},
})
4 changes: 2 additions & 2 deletions pkg/integration/tests/filter_by_path/select_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var SelectFile = NewIntegrationTest(NewIntegrationTestArgs{

t.ExpectPopup().Menu().Title(Equals("Filtering")).Select(Contains("filter by 'filterFile'")).Confirm()

postFilterTest(t, keys)
postFilterTest(t)
},
})

Expand All @@ -50,7 +50,7 @@ func commonSetup(shell *Shell) {
shell.Commit("only filterFile")
}

func postFilterTest(t *TestDriver, keys config.KeybindingConfig) {
func postFilterTest(t *TestDriver) {
t.Views().Information().Content(Contains("filtering by 'filterFile'"))

t.Views().Commits().
Expand Down
2 changes: 1 addition & 1 deletion pkg/integration/tests/filter_by_path/type_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ var TypeFile = NewIntegrationTest(NewIntegrationTestArgs{
SuggestionLines(Equals("filterFile")).
ConfirmFirstSuggestion()

postFilterTest(t, keys)
postFilterTest(t)
},
})

0 comments on commit 6c3671f

Please sign in to comment.