From e9c5261a49c86b4123a8ad5e19ec5de8299856e3 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sun, 13 Mar 2016 17:24:49 +0100 Subject: [PATCH] Mend GUI tests --- cmd/syncthing/gui_test.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cmd/syncthing/gui_test.go b/cmd/syncthing/gui_test.go index 831367f8b..fdc377628 100644 --- a/cmd/syncthing/gui_test.go +++ b/cmd/syncthing/gui_test.go @@ -55,9 +55,6 @@ func TestCSRFToken(t *testing.T) { } func TestStopAfterBrokenConfig(t *testing.T) { - baseDirs["config"] = "../../test/h1" // to load HTTPS keys - expandLocations() - cfg := config.Configuration{ GUI: config.GUIConfiguration{ RawAddress: "127.0.0.1:0", @@ -66,7 +63,7 @@ func TestStopAfterBrokenConfig(t *testing.T) { } w := config.Wrap("/dev/null", cfg) - srv, err := newAPIService(protocol.LocalDeviceID, w, "", nil, nil, nil, nil, nil, nil) + srv, err := newAPIService(protocol.LocalDeviceID, w, "../../test/h1/https-cert.pem", "../../test/h1/https-key.pem", "", nil, nil, nil, nil, nil, nil) if err != nil { t.Fatal(err) }