Fix cover error to TestGetFollowRequests
This commit is contained in:
parent
f5194b9ebb
commit
c39d5765d4
|
@ -129,7 +129,13 @@ func TestAccountUnfollow(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetFollowRequests(t *testing.T) {
|
func TestGetFollowRequests(t *testing.T) {
|
||||||
|
canErr := true
|
||||||
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if canErr {
|
||||||
|
canErr = false
|
||||||
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
fmt.Fprintln(w, `[{"Username": "foo"}, {"Username": "bar"}]`)
|
fmt.Fprintln(w, `[{"Username": "foo"}, {"Username": "bar"}]`)
|
||||||
return
|
return
|
||||||
}))
|
}))
|
||||||
|
@ -141,6 +147,10 @@ func TestGetFollowRequests(t *testing.T) {
|
||||||
ClientSecret: "bar",
|
ClientSecret: "bar",
|
||||||
AccessToken: "zoo",
|
AccessToken: "zoo",
|
||||||
})
|
})
|
||||||
|
_, err := client.GetFollowRequests()
|
||||||
|
if err == nil {
|
||||||
|
t.Fatalf("should be fail: %v", err)
|
||||||
|
}
|
||||||
fReqs, err := client.GetFollowRequests()
|
fReqs, err := client.GetFollowRequests()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("should not be fail: %v", err)
|
t.Fatalf("should not be fail: %v", err)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user