From cda2c5d459bed519efc63f92d4608f3c3596f954 Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Thu, 22 Jan 2015 22:42:39 +0000 Subject: [PATCH] Fix integration tests --- test/syncthingprocess.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/syncthingprocess.go b/test/syncthingprocess.go index 3943e6e00..7b62934c2 100644 --- a/test/syncthingprocess.go +++ b/test/syncthingprocess.go @@ -94,7 +94,7 @@ func (p *syncthingProcess) stop() error { p.cmd.Process.Signal(os.Kill) p.cmd.Wait() - fd, err := os.Open(p.instance + ".out") + fd, err := os.Open(p.logfd.Name()) if err != nil { return err }