diff options
Diffstat (limited to 'commands')
-rw-r--r-- | commands/commands_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/commands_test.go b/commands/commands_test.go index 7c3ec84f..c01019d0 100644 --- a/commands/commands_test.go +++ b/commands/commands_test.go @@ -75,6 +75,8 @@ func (d *dummyData) Date() time.Time { return time.Now func (d *dummyData) DateAutoFormat(time.Time) string { return "" } func (d *dummyData) Header(string) string { return "" } func (d *dummyData) ThreadPrefix() string { return "└─>" } +func (d *dummyData) ThreadCount() int { return 0 } +func (d *dummyData) ThreadFolded() bool { return false } func (d *dummyData) Subject() string { return "Re: [PATCH] hey" } func (d *dummyData) SubjectBase() string { return "[PATCH] hey" } func (d *dummyData) Number() int { return 0 } |