From b3bfeee1004f67eb0cc640b97a01065cfdffc757 Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Mon, 23 Oct 2017 10:08:34 +0200 Subject: [PATCH] Revert "local state: fix failing tests" This reverts commit 76682da4a048b623a1c201eb56710639437a9ed9. --- agent/agent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/agent_test.go b/agent/agent_test.go index a883caf703..ca6665a8bf 100644 --- a/agent/agent_test.go +++ b/agent/agent_test.go @@ -911,7 +911,7 @@ func TestAgent_PersistService(t *testing.T) { if got, want := restored.Token, "mytoken"; got != want { t.Fatalf("got token %q want %q", got, want) } - if got, want := restored.Service.Port, 8001; got != want { + if got, want := restored.Service.Port, 8081; got != want { t.Fatalf("got port %d want %d", got, want) } }