Fix misleading comment in test

Co-authored-by: xyhp915 <1779837+xyhp915@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-22 02:59:40 +00:00
parent 26399ed285
commit 47a245fd29

View File

@@ -34,8 +34,8 @@
(let [result (db-based-api/get-tags-by-name "NonExistentTag")]
(is (nil? result) "Should return nil for non-existent tags")))
(testing "get_tags_by_name returns multiple tags with same name"
;; Create multiple pages with same name but different case-sensitivity handling
(testing "get_tags_by_name returns tags when they exist"
;; Create a tag
(test-helper/create-page! "MultiTag" {:redirect? false :class? true})
(let [result (db-based-api/get-tags-by-name "MultiTag")