diff options
author | Morgan Astra <m@morganastra.me> | 2018-11-15 22:23:30 -0800 |
---|---|---|
committer | Morgan Astra <m@morganastra.me> | 2018-11-15 22:23:30 -0800 |
commit | d7e94fe2263bde6c4b50eda0850f4f0042e3d4c7 (patch) | |
tree | e6fbd334133affe5ddbc4f5d0e74a54df0c50282 /test/pronouns | |
parent | c63934ec56e80c5c5058e3d6d97af74a669ceda8 (diff) |
Fix formatting
Diffstat (limited to 'test/pronouns')
-rw-r--r-- | test/pronouns/pages_test.clj | 4 |
1 files 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")))) |