*: replace 'golang.org/x/net/context' with 'context'

Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyu-Ho Lee
2017-09-06 14:57:25 -07:00
parent ff31fb4b8b
commit f65aee0759
175 changed files with 270 additions and 245 deletions

View File

@@ -15,9 +15,8 @@
package schedule
import (
"context"
"sync"
"golang.org/x/net/context"
)
type Job func(context.Context)

View File

@@ -15,9 +15,8 @@
package schedule
import (
"context"
"testing"
"golang.org/x/net/context"
)
func TestFIFOSchedule(t *testing.T) {