From c844991cba58b282cbc0cf83a2b91ccde8a3da28 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sun, 13 Jul 2014 21:07:04 +0200 Subject: [PATCH] Tests for previous commit --- config/config_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config_test.go b/config/config_test.go index 719c7db20..afac496aa 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -27,7 +27,7 @@ func init() { func TestDefaultValues(t *testing.T) { expected := OptionsConfiguration{ ListenAddress: []string{"0.0.0.0:22000"}, - GlobalAnnServer: "announce.syncthing.net:22025", + GlobalAnnServer: "announce.syncthing.net:22026", GlobalAnnEnabled: true, LocalAnnEnabled: true, LocalAnnPort: 21025, @@ -149,7 +149,7 @@ func TestOverriddenValues(t *testing.T) { :23000 false - syncthing.nym.se:22025 + syncthing.nym.se:22026 false false 42123 @@ -166,7 +166,7 @@ func TestOverriddenValues(t *testing.T) { expected := OptionsConfiguration{ ListenAddress: []string{":23000"}, - GlobalAnnServer: "syncthing.nym.se:22025", + GlobalAnnServer: "syncthing.nym.se:22026", GlobalAnnEnabled: false, LocalAnnEnabled: false, LocalAnnPort: 42123,