Remove 'go' from calling 'cancel'
https://github.com/mattn/go-mastodon/pull/28#discussion_r112162740
This commit is contained in:
parent
fb53d41dd9
commit
b105e8554c
|
@ -52,7 +52,7 @@ func TestRegisterAppWithCancel(t *testing.T) {
|
||||||
defer ts.Close()
|
defer ts.Close()
|
||||||
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
go cancel()
|
cancel()
|
||||||
_, err := RegisterApp(ctx, &AppConfig{
|
_, err := RegisterApp(ctx, &AppConfig{
|
||||||
Server: ts.URL,
|
Server: ts.URL,
|
||||||
Scopes: "read write follow",
|
Scopes: "read write follow",
|
||||||
|
|
|
@ -56,7 +56,7 @@ func TestAuthenticateWithCancel(t *testing.T) {
|
||||||
ClientSecret: "bar",
|
ClientSecret: "bar",
|
||||||
})
|
})
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
go cancel()
|
cancel()
|
||||||
err := client.Authenticate(ctx, "invalid", "user")
|
err := client.Authenticate(ctx, "invalid", "user")
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("should be fail: %v", err)
|
t.Fatalf("should be fail: %v", err)
|
||||||
|
@ -116,7 +116,7 @@ func TestPostStatusWithCancel(t *testing.T) {
|
||||||
ClientSecret: "bar",
|
ClientSecret: "bar",
|
||||||
})
|
})
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
go cancel()
|
cancel()
|
||||||
_, err := client.PostStatus(ctx, &Toot{
|
_, err := client.PostStatus(ctx, &Toot{
|
||||||
Status: "foobar",
|
Status: "foobar",
|
||||||
})
|
})
|
||||||
|
@ -182,7 +182,7 @@ func TestGetTimelineHomeWithCancel(t *testing.T) {
|
||||||
AccessToken: "zoo",
|
AccessToken: "zoo",
|
||||||
})
|
})
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
go cancel()
|
cancel()
|
||||||
_, err := client.GetTimelineHome(ctx)
|
_, err := client.GetTimelineHome(ctx)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("should be fail: %v", err)
|
t.Fatalf("should be fail: %v", err)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user