summaryrefslogtreecommitdiff
path: root/test/clarktown/renderers/inline_code_test.clj
diff options
context:
space:
mode:
authorAsko Nõmm <asko@bien.ee>2022-04-21 19:13:02 +0300
committerAsko Nõmm <asko@bien.ee>2022-04-21 19:13:02 +0300
commit04821d8be5d773153718948454c864495704f67b (patch)
tree2b4bf3433ca40f30d0dbd282895e70021a769eda /test/clarktown/renderers/inline_code_test.clj
parenta178a0b1867cb5194a1a2cd4f6e01ac261bfa4b7 (diff)
Send correctors to each render as well
Diffstat (limited to 'test/clarktown/renderers/inline_code_test.clj')
-rw-r--r--test/clarktown/renderers/inline_code_test.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/clarktown/renderers/inline_code_test.clj b/test/clarktown/renderers/inline_code_test.clj
index 2071b7f..b1b277e 100644
--- a/test/clarktown/renderers/inline_code_test.clj
+++ b/test/clarktown/renderers/inline_code_test.clj
@@ -7,8 +7,8 @@
(deftest inline-code-renderer-test
(testing "Creating inline code text"
(is (= "<code>This is inline code.</code>"
- (inline-code/render "`This is inline code.`" nil))))
+ (inline-code/render "`This is inline code.`" nil nil))))
(testing "Creating inline-code text in the middle of regular text"
(is (= "This is regular text, mixed with <code>some inline code.</code>, and it's great."
- (inline-code/render "This is regular text, mixed with `some inline code.`, and it's great." nil))))) \ No newline at end of file
+ (inline-code/render "This is regular text, mixed with `some inline code.`, and it's great." nil nil))))) \ No newline at end of file