From d42d38e20749756887ccd572ace3faff446ef96b Mon Sep 17 00:00:00 2001 From: Kenneth Bingham Date: Fri, 16 Feb 2024 09:27:48 -0500 Subject: [PATCH] fix testing generated config --- ziti/cmd/create/create_config_router_edge_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ziti/cmd/create/create_config_router_edge_test.go b/ziti/cmd/create/create_config_router_edge_test.go index 7a432d163..ae642101c 100644 --- a/ziti/cmd/create/create_config_router_edge_test.go +++ b/ziti/cmd/create/create_config_router_edge_test.go @@ -116,7 +116,7 @@ func TestTunnelerTproxyMode(t *testing.T) { func TestTunnelerInvalidMode(t *testing.T) { invalidMode := "invalidMode" - expectedErrorMsg := "Unknown tunneler mode [" + invalidMode + "] provided, should be \"" + noneTunMode + "\", \"" + hostTunMode + "\", or \"" + tproxyTunMode + "\"" + expectedErrorMsg := "Unknown tunneler mode [" + invalidMode + "] provided, should be \"" + noneTunMode + "\", \"" + hostTunMode + "\", \"" + proxyTunMode + "\", or \"" + tproxyTunMode + "\"" // Create the options with both flags set to true routerOptions := clearEnvAndInitializeTestData()