From 2fb2ade4437054c0881c1a2d324560173934152a Mon Sep 17 00:00:00 2001 From: Evan Culver Date: Fri, 16 Jul 2021 10:12:33 -0700 Subject: [PATCH] Fix api/agent test --- api/agent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/agent_test.go b/api/agent_test.go index f372d67974..20b12144a2 100644 --- a/api/agent_test.go +++ b/api/agent_test.go @@ -1642,7 +1642,7 @@ func TestAPI_AgentConnectAuthorize(t *testing.T) { auth, err := agent.ConnectAuthorize(params) require.Nil(err) require.True(auth.Authorized) - require.Equal(auth.Reason, "ACLs disabled, access is allowed by default") + require.Equal(auth.Reason, "Default behavior configured by ACLs") } func TestAPI_AgentHealthService(t *testing.T) {