From d7e94fe2263bde6c4b50eda0850f4f0042e3d4c7 Mon Sep 17 00:00:00 2001 From: Morgan Astra Date: Thu, 15 Nov 2018 22:23:30 -0800 Subject: [PATCH] Fix formatting --- test/pronouns/pages_test.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/pronouns/pages_test.clj b/test/pronouns/pages_test.clj index b4b00fb..7563be1 100644 --- a/test/pronouns/pages_test.clj +++ b/test/pronouns/pages_test.clj @@ -3,7 +3,7 @@ [clojure.test :refer [deftest testing is are]])) (deftest prose-comma-list - (testing "prose-comma-list turns a list of strings into a prose list" + (testing "`prose-comma-list` turns a list of strings into a prose list" (are [v s] (= (pages/prose-comma-list v) s) ["foo" "bar" "baz" "bobble"] "foo, bar, baz, and bobble" ["foo" "bar" "baz"] "foo, bar, and baz" @@ -17,7 +17,7 @@ pronouns) ["she/her"] '(["she" "her" "her" "hers" "herself"]) ["she" "they"] '(["she" "her" "her" "hers" "herself"] - ["they" "them" "their" "theirs" "themselves"]) + ["they" "them" "their" "theirs" "themselves"]) ["she/her" "foo/bar"] '(["she" "her" "her" "hers" "herself"]) ["foo/bar"] '() ["a/b/c/d/e"] '(("a" "b" "c" "d" "e"))))