mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Use poll.WaitOn in authz_plugin_test.go
This fix uses poll.WaitOn to replace customerized implementation in authz_plugin_test.go Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
545d00e752
commit
0492b0997b
1 changed files with 2 additions and 12 deletions
|
@ -26,6 +26,7 @@ import (
|
|||
"github.com/docker/docker/pkg/archive"
|
||||
"github.com/docker/docker/pkg/authorization"
|
||||
"gotest.tools/assert"
|
||||
"gotest.tools/poll"
|
||||
"gotest.tools/skip"
|
||||
)
|
||||
|
||||
|
@ -224,18 +225,7 @@ func TestAuthZPluginAllowEventStream(t *testing.T) {
|
|||
|
||||
// Create a container and wait for the creation events
|
||||
cID := container.Run(t, ctx, c)
|
||||
|
||||
for i := 0; i < 100; i++ {
|
||||
c, err := c.ContainerInspect(ctx, cID)
|
||||
assert.NilError(t, err)
|
||||
if c.State.Running {
|
||||
break
|
||||
}
|
||||
if i == 99 {
|
||||
t.Fatal("Container didn't run within 10s")
|
||||
}
|
||||
time.Sleep(100 * time.Millisecond)
|
||||
}
|
||||
poll.WaitOn(t, container.IsInState(ctx, c, cID, "running"))
|
||||
|
||||
created := false
|
||||
started := false
|
||||
|
|
Loading…
Reference in a new issue