From e4c53a64e2bf469b885bb4ae07f6fd5c8b5a8517 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Thu, 1 Jan 2026 16:18:19 +0100 Subject: [PATCH] test: Add missing protocol method implementation --- perf-test/clj/reitit/coercion_perf_test.clj | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/perf-test/clj/reitit/coercion_perf_test.clj b/perf-test/clj/reitit/coercion_perf_test.clj index 4647ccc1..c3ec5621 100644 --- a/perf-test/clj/reitit/coercion_perf_test.clj +++ b/perf-test/clj/reitit/coercion_perf_test.clj @@ -80,12 +80,15 @@ (defrecord NoOpCoercion [] coercion/Coercion (-get-name [_] :no-op) + (-get-options [_]) (-get-apidocs [_ _ {:keys [parameters responses] :as info}]) + (-get-model-apidocs [_ _ _ _]) (-compile-model [_ model _] model) (-open-model [_ spec] spec) (-encode-error [_ error] error) (-request-coercer [_ type spec] (fn [value format] value)) - (-response-coercer [this spec] (coercion/request-coercer this :response spec {}))) + (-response-coercer [this spec] (coercion/request-coercer this :response spec {})) + (-query-string-coercer [_ _])) (comment (doseq [coercion [nil (->NoOpCoercion) spec/coercion]]