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": case "/api/v1/timelines/public":
fmt.Fprintln(w, `[{"content": "public"}]`) fmt.Fprintln(w, `[{"content": "public"}]`)
return return
case "/api/v1/timelines/direct": case "/api/v1/conversations":
fmt.Fprintln(w, `[{"content": "direct"}]`) fmt.Fprintln(w, `[{"id": "4", "unread":false, "last_status" : {"content": "direct"}}]`)
return return
} }
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)