Skip to content

Commit

Permalink
fix: make sure all namespace-specific def's are private
Browse files Browse the repository at this point in the history
  • Loading branch information
allentiak committed Oct 22, 2024
1 parent 7bd0273 commit 3266960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/rest-util/test/blaze/middleware/fhir/output_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

(test/use-fixtures :each tu/fixture)

(def resource-handler-200
(def ^:private resource-handler-200
"A handler which just returns a patient."
(wrap-output
(fn [_ respond _]
Expand All @@ -41,7 +41,7 @@
data (assoc :data (fhir-type/base64Binary data))
content-type (assoc :contentType (fhir-type/code content-type))))))))

(def resource-handler-304
(def ^:private resource-handler-304
"A handler which returns a 304 Not Modified response."
(wrap-output
(fn [_ respond _]
Expand Down

0 comments on commit 3266960

Please sign in to comment.