From 5aa49569de40d21617b5f4857af4f8ddb991e03d Mon Sep 17 00:00:00 2001 From: hunterlong Date: Fri, 10 Jan 2020 23:40:45 -0800 Subject: [PATCH] quick fix --- core/integrations/docker_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/integrations/docker_test.go b/core/integrations/docker_test.go index 9d9cecaa..820fb785 100644 --- a/core/integrations/docker_test.go +++ b/core/integrations/docker_test.go @@ -26,7 +26,7 @@ func TestDockerIntegration(t *testing.T) { t.Run("List Services from Docker", func(t *testing.T) { services, err := dockerIntegrator.List() require.Nil(t, err) - assert.NotEqual(t, 0, len(services)) + assert.Equal(t, 0, len(services)) }) t.Run("Confirm Services from Docker", func(t *testing.T) {