1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-02 09:21:40 +02:00

appease linter

This commit is contained in:
Jesse Duffield 2022-12-30 22:47:56 +11:00
parent 89ba3a38b4
commit 6c3671f807
3 changed files with 4 additions and 4 deletions

View File

@ -15,6 +15,6 @@ var CliArg = NewIntegrationTest(NewIntegrationTestArgs{
commonSetup(shell)
},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
postFilterTest(t, keys)
postFilterTest(t)
},
})

View File

@ -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)
},
})
@ -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().

View File

@ -30,6 +30,6 @@ var TypeFile = NewIntegrationTest(NewIntegrationTestArgs{
SuggestionLines(Equals("filterFile")).
ConfirmFirstSuggestion()
postFilterTest(t, keys)
postFilterTest(t)
},
})