From f7abb743c6ad9f575b6b4d487c58d3c500a6802d Mon Sep 17 00:00:00 2001 From: Ian Davis <18375+iand@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:30:35 +0100 Subject: [PATCH] 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 a13bdd4b..5c3dde65 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 = 16 + cfg.ExploreMaximumCpl = 15 require.Error(t, cfg.Validate()) })