浏览代码

Kill the whole docker acquis in tests (#1475)

blotus 3 年之前
父节点
当前提交
1bd8cc79c8
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      pkg/acquisition/modules/docker/docker_test.go

+ 1 - 2
pkg/acquisition/modules/docker/docker_test.go

@@ -183,7 +183,7 @@ container_name_regexp:
 					ticker.Reset(1 * time.Second)
 				case <-ticker.C:
 					log.Infof("no more line to read")
-					streamTomb.Kill(nil)
+					dockerSource.t.Kill(nil)
 					return nil
 				}
 			}
@@ -198,7 +198,6 @@ container_name_regexp:
 		if ts.expectedLines != 0 {
 			assert.Equal(t, ts.expectedLines, actualLines)
 		}
-		dockerSource.t.Kill(nil)
 		err = streamTomb.Wait()
 		if err != nil {
 			t.Fatalf("docker acquisition error: %s", err)