summaryrefslogtreecommitdiffstats
path: root/pkg/integration
diff options
context:
space:
mode:
authorstk <stk@ableton.com>2023-02-18 09:53:31 +0100
committerstk <stk@ableton.com>2023-02-18 09:53:31 +0100
commit4d39668743bcc42b3c09c774463e5270c9bcd85c (patch)
treeff28438b0ac14a77a9a30864d50c65c33db3f95b /pkg/integration
parent627cc285f77946a5e1112168589a06c7cc52c7ee (diff)
Undo a change made in #2444 that we didn't end up needing
Diffstat (limited to 'pkg/integration')
-rw-r--r--pkg/integration/components/test_test.go4
-rw-r--r--pkg/integration/types/types.go1
2 files changed, 0 insertions, 5 deletions
diff --git a/pkg/integration/components/test_test.go b/pkg/integration/components/test_test.go
index c40fc3368..08823f525 100644
--- a/pkg/integration/components/test_test.go
+++ b/pkg/integration/components/test_test.go
@@ -30,10 +30,6 @@ func (self *fakeGuiDriver) CurrentContext() types.Context {
return nil
}
-func (self *fakeGuiDriver) ContextForView(viewName string) types.Context {
- return nil
-}
-
func (self *fakeGuiDriver) Fail(message string) {
self.failureMessage = message
}
diff --git a/pkg/integration/types/types.go b/pkg/integration/types/types.go
index a26ac67af..5326054d2 100644
--- a/pkg/integration/types/types.go
+++ b/pkg/integration/types/types.go
@@ -20,7 +20,6 @@ type GuiDriver interface {
PressKey(string)
Keys() config.KeybindingConfig
CurrentContext() types.Context
- ContextForView(viewName string) types.Context
Fail(message string)
// These two log methods are for the sake of debugging while testing. There's no need to actually
// commit any logging.