Переглянути джерело

Don't run tests with audit on

Jakob Borg 10 роки тому
батько
коміт
6e4d33c741
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      test/util.go

+ 1 - 1
test/util.go

@@ -535,7 +535,7 @@ func startInstance(t *testing.T, i int) *rc.Process {
 
 	p := rc.NewProcess(addr)
 	p.LogTo(log)
-	if err := p.Start("../bin/syncthing", "-home", fmt.Sprintf("h%d", i), "-audit", "-no-browser"); err != nil {
+	if err := p.Start("../bin/syncthing", "-home", fmt.Sprintf("h%d", i), "-no-browser"); err != nil {
 		t.Fatal(err)
 	}
 	p.AwaitStartup()