From 568a32f574967b4787528b20954e7e55894f6e95 Mon Sep 17 00:00:00 2001 From: Ian Davis <18375+iand@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:33:53 +0100 Subject: [PATCH] Revert adjust test --- v2/internal/coord/routing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/internal/coord/routing_test.go b/v2/internal/coord/routing_test.go index 5c3dde65..a13bdd4b 100644 --- a/v2/internal/coord/routing_test.go +++ b/v2/internal/coord/routing_test.go @@ -169,7 +169,7 @@ func TestRoutingConfigValidate(t *testing.T) { t.Run("explore maximum 15 or less", func(t *testing.T) { cfg := DefaultRoutingConfig() - cfg.ExploreMaximumCpl = 15 + cfg.ExploreMaximumCpl = 16 require.Error(t, cfg.Validate()) })