summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/staging/discard_all_changes.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/integration/tests/staging/discard_all_changes.go')
-rw-r--r--pkg/integration/tests/staging/discard_all_changes.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/integration/tests/staging/discard_all_changes.go b/pkg/integration/tests/staging/discard_all_changes.go
index 7d27e7ec2..48cd0b62d 100644
--- a/pkg/integration/tests/staging/discard_all_changes.go
+++ b/pkg/integration/tests/staging/discard_all_changes.go
@@ -29,13 +29,13 @@ var DiscardAllChanges = NewIntegrationTest(NewIntegrationTestArgs{
t.Views().Staging().
IsFocused().
- SelectedLine(Contains("+three")).
+ SelectedLines(Contains("+three")).
// discard the line
Press(keys.Universal.Remove).
Tap(func() {
t.Actions().ConfirmDiscardLines()
}).
- SelectedLine(Contains("+four")).
+ SelectedLines(Contains("+four")).
// discard the other line
Press(keys.Universal.Remove).
Tap(func() {
@@ -49,6 +49,6 @@ var DiscardAllChanges = NewIntegrationTest(NewIntegrationTestArgs{
}).
// assert we are still in the staging panel, but now looking at the changes of the other file
IsFocused().
- SelectedLine(Contains("+3"))
+ SelectedLines(Contains("+3"))
},
})