From 6e4d33c7410b54b50b0d7fc6c0f279371e391594 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Mon, 20 Jul 2015 15:46:14 +0200 Subject: [PATCH] Don't run tests with audit on --- test/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util.go b/test/util.go index 1706d839..3d598337 100644 --- a/test/util.go +++ b/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()