Fix typo in waitForStableGourtineCount

Signed-off-by: Rob Murray <rob.murray@docker.com>
This commit is contained in:
Rob Murray
2024-12-02 18:48:32 +00:00
parent 24fd633ebb
commit dd7831187d
3 changed files with 4 additions and 4 deletions

View File

@@ -3823,7 +3823,7 @@ func (s *DockerCLIRunSuite) TestRunAttachFailedNoLeak(c *testing.T) {
client := d.NewClientT(c)
nroutines := waitForStableGourtineCount(ctx, c, client)
nroutines := waitForStableGoroutineCount(ctx, c, client)
out, err := d.Cmd(append([]string{"run", "-d", "--name=test", "-p", "8000:8000", "busybox"}, sleepCommandForDaemonPlatform()...)...)
assert.NilError(c, err, out)