summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-12-27 22:52:20 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-12-27 22:52:20 +1100
commited93e0a2b0943379470049d2a25e4fb828179b97 (patch)
treeb9cb34b8f017912299714fc67a9ca4f50ba63b3d /pkg/integration/tests/config
parentc5050ecabd57702c7bfb02a38729ed8a4f23b2c5 (diff)
remove dependency on model
Diffstat (limited to 'pkg/integration/tests/config')
-rw-r--r--pkg/integration/tests/config/remote_named_star.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/integration/tests/config/remote_named_star.go b/pkg/integration/tests/config/remote_named_star.go
index 0306427ca..735389667 100644
--- a/pkg/integration/tests/config/remote_named_star.go
+++ b/pkg/integration/tests/config/remote_named_star.go
@@ -17,6 +17,10 @@ var RemoteNamedStar = NewIntegrationTest(NewIntegrationTestArgs{
SetupConfig: func(cfg *config.AppConfig) {},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
// here we're just asserting that we haven't panicked upon starting lazygit
- t.Model().AtLeastOneCommit()
+ t.Views().Commits().
+ Lines(
+ Anything(),
+ Anything(),
+ )
},
})