diff --git a/pkg/integration/components/test_test.go b/pkg/integration/components/test_test.go index 6c2f15b4b..08823f525 100644 --- a/pkg/integration/components/test_test.go +++ b/pkg/integration/components/test_test.go @@ -56,20 +56,6 @@ func (self *fakeGuiDriver) View(viewName string) *gocui.View { return nil } -func TestAssertionFailure(t *testing.T) { - test := NewIntegrationTest(NewIntegrationTestArgs{ - Description: unitTestDescription, - Run: func(t *TestDriver, keys config.KeybindingConfig) { - t.press("a") - t.press("b") - }, - }) - driver := &fakeGuiDriver{} - test.Run(driver) - assert.EqualValues(t, []string{"a", "b"}, driver.pressedKeys) - assert.Equal(t, "Expected 2 commits present, but got 0", driver.failureMessage) -} - func TestManualFailure(t *testing.T) { test := NewIntegrationTest(NewIntegrationTestArgs{ Description: unitTestDescription,