From ed4b68c36481ca8b7bc07fd3c3906174531eea19 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 1 Jun 2026 22:44:54 +0200 Subject: [PATCH] test(spec): remove obsolete extra search path from postgis tests This was brought over in the last commit, because the postgis was re-using the same config as another test. Now it has a separate config, so we can reduce it a bit. --- test/spec/Feature/Query/PostGISSpec.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/spec/Feature/Query/PostGISSpec.hs b/test/spec/Feature/Query/PostGISSpec.hs index 595244c91..2f7c03c19 100644 --- a/test/spec/Feature/Query/PostGISSpec.hs +++ b/test/spec/Feature/Query/PostGISSpec.hs @@ -11,7 +11,7 @@ import Protolude hiding (get) import SpecHelper spec :: SpecWithConfig -spec withConfig = withConfig (baseCfg { configDbExtraSearchPath = ["public", "extensions", "EXTRA \"@/\\#~_-"] }) $ describe "PostGIS features" $ +spec withConfig = withConfig (baseCfg { configDbExtraSearchPath = ["public", "extensions"] }) $ describe "PostGIS features" $ context "GeoJSON output" $ do it "works for a table that has a geometry column" $ request methodGet "/shops"