local state: fix failing tests

This commit is contained in:
Frank Schroeder 2017-08-28 14:17:14 +02:00 committed by Frank Schröder
parent 884f98f8aa
commit 37c8492e5e
1 changed files with 1 additions and 1 deletions

View File

@ -911,7 +911,7 @@ func TestAgent_PersistService(t *testing.T) {
if got, want := restored.Token, "mytoken"; got != want { if got, want := restored.Token, "mytoken"; got != want {
t.Fatalf("got token %q want %q", got, want) t.Fatalf("got token %q want %q", got, want)
} }
if got, want := restored.Service.Port, 8081; got != want { if got, want := restored.Service.Port, 8001; got != want {
t.Fatalf("got port %d want %d", got, want) t.Fatalf("got port %d want %d", got, want)
} }
} }