Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* @basecamp/sip
.github/workflows/ @basecamp/sip
* @basecamp/cli
.github/workflows/ @basecamp/cli
Comment on lines +1 to +2
1 change: 1 addition & 0 deletions internal/tui/debug_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ func TestEnterOnBoxPostingTriggersFetch(t *testing.T) {
posting := m.box.selectedPosting()
if posting == nil {
t.Fatal("selectedPosting() is nil")
return
}
t.Logf("selected posting: %+v", posting)
t.Logf("posting.Topic: %+v", posting.Topic)
Expand Down
2 changes: 2 additions & 0 deletions internal/tui/tui_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ func TestBoxesLoadedMsg(t *testing.T) {
selected := result.boxes.selectedBox()
if selected == nil {
t.Fatal("selectedBox() returned nil after setting items")
return
}
if selected.Name != "Imbox" {
t.Errorf("first selected box = %q, want %q", selected.Name, "Imbox")
Expand Down Expand Up @@ -783,6 +784,7 @@ func TestCalendarsLoadedMsg(t *testing.T) {
selected := result.calendars.selectedCalendar()
if selected == nil {
t.Fatal("selectedCalendar() returned nil after setting items")
return
}
if selected.Name != "My Calendar" {
t.Errorf("first selected calendar = %q, want %q", selected.Name, "My Calendar")
Expand Down
Loading