Fix TestCmdTimelone() as well.

pull/137/head
Ollivier Robert 2021-04-15 16:32:27 +02:00 committed by mattn
parent d6cb307605
commit 6abe72ddb0
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ func TestCmdTimeline(t *testing.T) {
case "/api/v1/timelines/public":
fmt.Fprintln(w, `[{"content": "public"}]`)
return
case "/api/v1/timelines/direct":
fmt.Fprintln(w, `[{"content": "direct"}]`)
case "/api/v1/conversations":
fmt.Fprintln(w, `[{"id": "4", "unread":false, "last_status" : {"content": "direct"}}]`)
return
}
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)