Commit 5aa36f51 authored by gwenn's avatar gwenn

Try to fix Travis build

parent 1e5f2849
...@@ -440,10 +440,10 @@ func TestCancel(t *testing.T) { ...@@ -440,10 +440,10 @@ func TestCancel(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background()) ctx, cancel := context.WithCancel(context.Background())
go func() { go func() {
time.Sleep(100 * time.Millisecond) time.Sleep(50 * time.Millisecond)
cancel() cancel()
}() }()
_, err := db.ExecContext(ctx, "SELECT sleep() FROM test") _, err := db.ExecContext(ctx, "UPDATE test SET name = sleep()")
if err != context.Canceled { if err != context.Canceled {
t.Errorf("ExecContext expected to fail with Cancelled but it returned %v", err) t.Errorf("ExecContext expected to fail with Cancelled but it returned %v", err)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment