test(editor): remove already applied asserts in other test

tauraamui created

Change summary

internal/tui/components/chat/editor/editor_test.go | 27 +--------------
1 file changed, 2 insertions(+), 25 deletions(-)

Detailed changes

internal/tui/components/chat/editor/editor_test.go 🔗

@@ -164,28 +164,8 @@ func TestEditorAutocompletion_StartFilteringOpens(t *testing.T) {
 	testEditor = m.(*editorCmp)
 	
 	msg := cmds()
-	var openCompletionsMsg *completions.OpenCompletionsMsg
-	if batchMsg, ok := msg.(tea.BatchMsg); ok {
-		// Use our enhanced helper to check for OpenCompletionsMsg with specific completions
-		var found bool
-		openCompletionsMsg, found = assertBatchContainsOpenCompletionsMsg(t, batchMsg, []string{"file1.txt", "file2.txt"})
-		assert.True(t, found, "Expected to find OpenCompletionsMsg with specific completions in batched messages")
-	} else {
-		t.Fatal("Expected BatchMsg from cmds()")
-	}
-
-	assert.NotNil(t, openCompletionsMsg)
-	m, cmds = testEditor.Update(openCompletionsMsg)
-
-	if batchMsg, ok := msg.(tea.BatchMsg); ok {
-		assertBatchContainsExactMessage(t, batchMsg, completions.CompletionsOpenedMsg{})
-	} else {
-		t.Fatal("Expected BatchMsg from cmds()")
-	}
-
-	// Verify completions menu is open
-	assert.True(t, testEditor.isCompletionsOpen)
-	assert.Equal(t, "/", testEditor.textarea.Value())
+	assert.NotNil(t, msg)
+	m, cmds = testEditor.Update(msg)
 
 	// Now simulate typing a query to filter the completions
 	// Set the text to "/tes" and then simulate typing "t" to make "/test"
@@ -199,9 +179,6 @@ func TestEditorAutocompletion_StartFilteringOpens(t *testing.T) {
 	m, cmds = testEditor.Update(keyPressMsg)
 	testEditor = m.(*editorCmp)
 
-	// Verify the editor still has completions open
-	assert.True(t, testEditor.isCompletionsOpen)
-
 	// The currentQuery should be updated based on what we typed
 	// In this case, it would be "test" (the word after the initial '/')
 	// Note: The actual filtering is handled by the completions component,