Skip to content

Commit 4d1c00a

Browse files
Fix lint violation
1 parent 8496885 commit 4d1c00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ui/dashboard_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func TestDashboard_ToggleDetailsEmptyState(t *testing.T) {
188188
d, _ = updateDashboard(d, tea.WindowSizeMsg{Width: 80, Height: 24})
189189

190190
// Should not panic
191-
d, _ = updateDashboard(d, keyPressMsg("d"))
191+
_, _ = updateDashboard(d, keyPressMsg("d"))
192192
assert.True(t, dashboardShowDetails) // unchanged — guarded by len(m.apps) > 0
193193
}
194194

0 commit comments

Comments
 (0)