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

@@ -302,7 +302,7 @@ func (s *DockerCLILogsSuite) TestLogsFollowGoroutinesWithStdout(c *testing.T) {
assert.NilError(c, d.WaitRun(id))
client := d.NewClientT(c)
nroutines := waitForStableGourtineCount(ctx, c, client)
nroutines := waitForStableGoroutineCount(ctx, c, client)
cmd := d.Command("logs", "-f", id)
r, w := io.Pipe()
@@ -358,7 +358,7 @@ func (s *DockerCLILogsSuite) TestLogsFollowGoroutinesNoOutput(c *testing.T) {
assert.NilError(c, d.WaitRun(id))
client := d.NewClientT(c)
nroutines := waitForStableGourtineCount(ctx, c, client)
nroutines := waitForStableGoroutineCount(ctx, c, client)
assert.NilError(c, err)
cmd := d.Command("logs", "-f", id)