summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-12-27 16:27:36 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-12-27 21:26:18 +1100
commitb166b8f776e45c77a94b6e919f3b9460ff3c2e06 (patch)
tree17459acf768779d92bae318fa631b2cc43aeb472 /pkg/integration/tests/config
parentc5c9f5bb941342766f86626ad13d30e5ce01980e (diff)
combine assert and input structs, clean up interface
Diffstat (limited to 'pkg/integration/tests/config')
-rw-r--r--pkg/integration/tests/config/remote_named_star.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/integration/tests/config/remote_named_star.go b/pkg/integration/tests/config/remote_named_star.go
index 589394061..1796cab20 100644
--- a/pkg/integration/tests/config/remote_named_star.go
+++ b/pkg/integration/tests/config/remote_named_star.go
@@ -18,10 +18,9 @@ var RemoteNamedStar = NewIntegrationTest(NewIntegrationTestArgs{
Run: func(
shell *Shell,
input *Input,
- assert *Assert,
keys config.KeybindingConfig,
) {
// here we're just asserting that we haven't panicked upon starting lazygit
- assert.Model().AtLeastOneCommit()
+ input.Model().AtLeastOneCommit()
},
})