Skip to content

Commit 81868de

Browse files
committed
Hard-code "enter" for adding lines in integration tests
This one doesn't make a difference in practice because we don't remap the key in tests, but if we would, then this would no longer work correctly. It's just more correct this way.
1 parent ea70504 commit 81868de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/integration/components/commit_description_panel_driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func (self *CommitDescriptionPanelDriver) SwitchToSummary() *CommitMessagePanelD
2727
}
2828

2929
func (self *CommitDescriptionPanelDriver) AddNewline() *CommitDescriptionPanelDriver {
30-
self.t.pressFast(self.t.keys.Universal.Confirm)
30+
self.t.pressFast("<enter>")
3131
return self
3232
}
3333

0 commit comments

Comments
 (0)