From e585277c8924e4cbeb217af939a10d3c542e0ccd Mon Sep 17 00:00:00 2001 From: lpessoa Date: Mon, 3 Jan 2022 22:55:02 +0000 Subject: [PATCH] fixing gofmt errors --- pkg/commands/sort_container_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/sort_container_test.go b/pkg/commands/sort_container_test.go index d92fcafd..1003f684 100644 --- a/pkg/commands/sort_container_test.go +++ b/pkg/commands/sort_container_test.go @@ -149,7 +149,7 @@ func TestLegacySortedContainers(t *testing.T) { ct := command.sortedContainers(containers) for i := 0; i < len(ct); i++ { - assert.Equal(t, sorted[i].Container.State, ct[i].Container.State,) + assert.Equal(t, sorted[i].Container.State, ct[i].Container.State) assert.Equal(t, sorted[i].Container.ID, ct[i].Container.ID) } }