Commit ebe407da authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 42ff83d9
...@@ -61,10 +61,11 @@ func TestWatch(t *testing.T) { ...@@ -61,10 +61,11 @@ func TestWatch(t *testing.T) {
xcommit(obj(0, "data0")) xcommit(obj(0, "data0"))
// open tfs at go side // open tfs at go side
stor, err := zodb.OpenStorage(context.Background(), tfs, &zodb.OpenOptions{ReadOnly: true}); X(err) bg := context.Background()
stor, err := zodb.OpenStorage(bg, tfs, &zodb.OpenOptions{ReadOnly: true}); X(err)
// spawn plain and verbose watchers // spawn plain and verbose watchers
ctx0, cancel := context.WithCancel(context.Background()) ctx0, cancel := context.WithCancel(bg)
wg, ctx := errgroup.WithContext(ctx0) wg, ctx := errgroup.WithContext(ctx0)
// gowatch spawns Watch(verbose) and returns expectf() func that is // gowatch spawns Watch(verbose) and returns expectf() func that is
......
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